|
@@ -10,7 +10,7 @@ Main file.
|
|
|
#include "header.h"
|
|
|
|
|
|
////////////////////////////// Global Variable //////////////////////////////
|
|
|
-
|
|
|
+foo baz = foo();
|
|
|
|
|
|
////////////////////////////// Main //////////////////////////////
|
|
|
int main(void) {
|
|
@@ -30,11 +30,14 @@ int main(void) {
|
|
|
// test function
|
|
|
bar();
|
|
|
|
|
|
+ // test class (lib)
|
|
|
+ baz.bar();
|
|
|
+
|
|
|
// Loop for i-times
|
|
|
for(iter = 10; iter > 0; iter--) {
|
|
|
|
|
|
// Blink LED
|
|
|
- printf("Blinking %i-times!\r\n", iter);
|
|
|
+ printf("Blinking %i-times!\n", iter);
|
|
|
gpio_put(PICO_DEFAULT_LED_PIN, true);
|
|
|
sleep_ms(SLEEP_TIME_MS);
|
|
|
gpio_put(PICO_DEFAULT_LED_PIN, false);
|
|
@@ -46,5 +49,5 @@ int main(void) {
|
|
|
void bar(void) {
|
|
|
|
|
|
////////////////////////// Code //////////////////////////
|
|
|
- printf("Function bar");
|
|
|
+ printf("Function bar\n");
|
|
|
}
|