
cagezero
Members-
Content Count
8 -
Joined
-
Last visited
About cagezero
-
Rank
Noob Class
-
Thank you Rei Vilo. I was not aware that rtosSetup and rtosGlobals are not yet included. It is hard to use what is not there! I could just create a second task (and have tested that) but I am looking for a thread that can be spawned by code, and rtos_Task seems to be the best option. My application will have at least one thread that needs to be kicked off and then die in under a minute. I really don
-
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
-
[Energia Library] RTOS Libraries for MSP432 on Energia MT
cagezero replied to Rei Vilo's topic in MSP Energia Libraries
This is wonderful. Thanks!- 29 replies
-
- Energia
- Energia MT
-
(and 2 more)
Tagged with:
-
Redbear CC3200 Hardware Crypto Engine
cagezero replied to cagezero's topic in Energia - TivaC/CC3XXX
Uncompressing is not working on my mac, but I will seek other means. Thanks for the direction. -
Redbear CC3200 Hardware Crypto Engine
cagezero replied to cagezero's topic in Energia - TivaC/CC3XXX
Thanks bluehash. The link you provided delivers a .exe, which I cannt open. Is there another way to get the files that will work for mac users? -
Redbear CC3200 Hardware Crypto Engine
cagezero replied to cagezero's topic in Energia - TivaC/CC3XXX
Thanks for the reply Rei Vilo. I have looked at that wiki a couple of times, but I see no links to the source files. Any idea wher they are available? -
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?
-
Hi everyone. This is turning into an exciting new hobby for me. I am an experienced programmer, but I am just starting with electrical engineering. Thank you in advance to everyone for creating this community.