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.
 
 

23 lines
237 B

/*
* app.cpp
*
* Created on: Jan 8, 2021
* Author: zen
*/
#include "app.h"
#include "main.h"
#include "blink.h"
BLINK blink;
extern "C" void app_c(void) {
app();
}
void app(void) {
while (true) {
blink.toggle();
}
}