You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include"main.hpp"
|
|
#include"drivers/led/led.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Nucleo_f042k6 bsl;
|
|
|
|
bsl.init();
|
|
while(1)
|
|
{
|
|
bsl.running();
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
|