
TVG
-
Content Count
13 -
Joined
-
Last visited
Reputation Activity
-
TVG reacted to yosh in Watchdog Timer for TIVA TM4C1294ncpdt
Just this code:
void setup() { Serial.begin(9600); Serial.println("START"); } int i=0; void loop() { Serial.println(i++); delay(500); if(i==5) WDTCTL = 0 ; } First code segment (WDTCTL = 0) was just for information. So at least the code above should compile for G2553 ...
Edit: You can have a look HERE too. The example is more TM4C specific ...