JINU 0 Posted September 20, 2017 Share Posted September 20, 2017 Hi sir, multitask serial sample code in energia 17 is not working ,when serial0 changed to serial1.below i added code.please help me . void setup() { Serial1.begin(115200); } void loop() { Serial1.print("Task 1 millis: "); Serial1.println(millis()); delay(1000); } void setup2() { Serial1.begin(115200); } void loop2() { Serial1.print("Task 2 millis: "); Serial1.println(millis()); delay(500); } Quote Link to post Share on other sites
Oldnotdead 8 Posted September 24, 2017 Share Posted September 24, 2017 I am having the same problem with The EMT multitask.. I am using energia ver 17 with cc3200 Launchpad. If run my program and select The “LAUNCHPAD W/3200 (80MHZ)” the same sketch compiles and runs without error. I can compile and upload Other multisketch examples (blink three leds) and they run okay. It appears the Problem is with Serial and Serial1 functions, Please help Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.