Search the Community
Showing results for tags 'redbear'.
-
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
-
The feature list for the redbear cc3200 includes a hardware crypto engine with aes functionality. I am having a hard time figuring out how to access those libraries. Can someone point me in the right direction or perhaps to an example of usage?