Search found 3 matches
- Sun Sep 17, 2017 1:03 am
- Forum: ESP32 Arduino
- Topic: Serial monitor output not working after starting i2c wire library
- Replies: 3
- Views: 6635
Serial monitor output not working after starting i2c wire library
I am using the arduino IDE and want to get I2C data from a wii nunchuck controller. I am just trying to Serial.print() some values but nothing goes to the com viewer after wire is started. void setup() { Serial.begin(115200); Serial.println("HELLO"); Wire.begin(NUNCHUK_ADDRESS); Wire.beginTransmissi...
- Thu Aug 31, 2017 2:00 pm
- Forum: General Discussion
- Topic: CPU halting when working with timeval, gettimeofday()
- Replies: 2
- Views: 5003
Re: CPU halting when working with timeval, gettimeofday()
Great, thank you!
- Thu Aug 31, 2017 2:43 am
- Forum: General Discussion
- Topic: CPU halting when working with timeval, gettimeofday()
- Replies: 2
- Views: 5003
CPU halting when working with timeval, gettimeofday()
Hi, I am trying to run a simple timer program to print to COM ever so many milliseconds. Code compiles just fine but when i run i get a CPU halted error , " Guru Meditation Error of type LoadProhibited occurred on core 1. Exception was unhandled." I know it has to be a simple problem (im learning). ...