CommonPIC32

Changeset

79:0338c4362083
2018-10-30 Paul Boddie raw files shortlog changelog graph Employ a more sensible LED blinking frequency in the exception handler.
examples/demo/main.c (file) examples/vga/main.c (file)
     1.1 --- a/examples/demo/main.c	Tue Oct 30 19:21:53 2018 +0100
     1.2 +++ b/examples/demo/main.c	Tue Oct 30 19:23:34 2018 +0100
     1.3 @@ -165,7 +165,7 @@
     1.4  
     1.5  void exception_handler(void)
     1.6  {
     1.7 -    blink(3 << 12, PORTA, 1 << 3);
     1.8 +    blink(1 << 22, PORTA, 1 << 3);
     1.9  }
    1.10  
    1.11  void interrupt_handler(void)
     2.1 --- a/examples/vga/main.c	Tue Oct 30 19:21:53 2018 +0100
     2.2 +++ b/examples/vga/main.c	Tue Oct 30 19:23:34 2018 +0100
     2.3 @@ -220,7 +220,7 @@
     2.4  
     2.5  void exception_handler(void)
     2.6  {
     2.7 -    blink(3 << 12, PORTA, LED_PIN);
     2.8 +    blink(1 << 22, PORTA, LED_PIN);
     2.9  }
    2.10  
    2.11  void interrupt_handler(void)