I am working with a simplified version of the Galaxia_Task example. For some reason the rtosSetup() function does not seem to be firing. My code: TaskTest.ino
#include "Energia.h"
#include "rtosGlobals.h"
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.println("Hello from test loop");
delay(1000);
}
rtosGlobals.h
#include "Energia.h"
#include "Task.h"
void functionTask();
Task myTask;
void functionTask() {
while(true) {
Serial.println("hello from task");
delay(500);
}
}
void rtosSetup() {
myTask.begin(functionTask, Task_numPriorit