use startup_watchdog_disable() instead of stop_watchdog() upon startup.
authorNathael Pajani <nathael.pajani@ed3l.fr>
Mon, 23 Nov 2015 12:05:51 +0000 (13:05 +0100)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 8 Nov 2022 16:14:23 +0000 (17:14 +0100)
adc/main.c
eeprom/main.c
epaper/main.c
gpio_intr/main.c
i2c_temp/main.c
lcd_char/main.c
ledstrip/main.c
ultrasonic_sensor/main.c

index b4ef4e7..a8edb7c 100644 (file)
@@ -121,7 +121,7 @@ void TMP36_display(int adc_num, int uart_num)
 void system_init()
 {
        /* Stop the watchdog */
-       stop_watchdog(); /* Do it right now, before it gets a chance to break in */
+       startup_watchdog_disable(); /* Do it right now, before it gets a chance to break in */
 
        /* Note: Brown-Out detection must be powered to operate the ADC. adc_on() will power
         *  it back on if called after system_init() */
index 88383a5..1a4f00c 100644 (file)
@@ -183,7 +183,7 @@ int module_desc_set(char* name, uint8_t module_version, uint16_t serial_num)
 void system_init()
 {
        /* Stop the watchdog */
-       stop_watchdog(); /* Do it right now, before it gets a chance to break in */
+       startup_watchdog_disable(); /* Do it right now, before it gets a chance to break in */
 
        /* Note: Brown-Out detection must be powered to operate the ADC. adc_on() will power
         *  it back on if called after system_init() */
index 7633ea5..ae902ce 100644 (file)
@@ -109,7 +109,7 @@ struct epaper_definition epaper_def = {
 void system_init()
 {
        /* Stop the watchdog */
-       stop_watchdog(); /* Do it right now, before it gets a chance to break in */
+       startup_watchdog_disable(); /* Do it right now, before it gets a chance to break in */
 
        /* Note: Brown-Out detection must be powered to operate the ADC. adc_on() will power
         *  it back on if called after system_init() */
index 7ea3ad0..f404271 100644 (file)
@@ -64,7 +64,7 @@ const struct pio button = LPC_GPIO_0_12; /* ISP button */
 void system_init()
 {
        /* Stop the watchdog */
-       stop_watchdog(); /* Do it right now, before it gets a chance to break in */
+       startup_watchdog_disable(); /* Do it right now, before it gets a chance to break in */
 
        /* Note: Brown-Out detection must be powered to operate the ADC. adc_on() will power
         *  it back on if called after system_init() */
index 1039383..f1b0c94 100644 (file)
@@ -114,7 +114,7 @@ void temp_display(uint8_t addr, int uart_num)
 void system_init()
 {
        /* Stop the watchdog */
-       stop_watchdog(); /* Do it right now, before it gets a chance to break in */
+       startup_watchdog_disable(); /* Do it right now, before it gets a chance to break in */
 
        /* Note: Brown-Out detection must be powered to operate the ADC. adc_on() will power
         *  it back on if called after system_init() */
index c1859a8..c095a92 100644 (file)
@@ -126,7 +126,7 @@ struct lcdc_definition lcd_two = {
 void system_init()
 {
        /* Stop the watchdog */
-       stop_watchdog(); /* Do it right now, before it gets a chance to break in */
+       startup_watchdog_disable(); /* Do it right now, before it gets a chance to break in */
 
        /* Note: Brown-Out detection must be powered to operate the ADC. adc_on() will power
         *  it back on if called after system_init() */
index fb0af3c..75596d8 100644 (file)
@@ -80,7 +80,7 @@ const struct pio ws2812_data_out_pin = LPC_GPIO_0_19; /* Led control data pin */
 void system_init()
 {
        /* Stop the watchdog */
-       stop_watchdog(); /* Do it right now, before it gets a chance to break in */
+       startup_watchdog_disable(); /* Do it right now, before it gets a chance to break in */
 
        /* Note: Brown-Out detection must be powered to operate the ADC. adc_on() will power
         *  it back on if called after system_init() */
index 930acb3..4656180 100644 (file)
@@ -66,7 +66,7 @@ const struct pio sensor = LPC_GPIO_0_7; /* Ultrasonic sensor signal */
 void system_init()
 {
        /* Stop the watchdog */
-       stop_watchdog(); /* Do it right now, before it gets a chance to break in */
+       startup_watchdog_disable(); /* Do it right now, before it gets a chance to break in */
 
        /* Note: Brown-Out detection must be powered to operate the ADC. adc_on() will power
         *  it back on if called after system_init() */