A little bit more readable
authorNathael Pajani <nathael.pajani@ed3l.fr>
Sat, 1 Dec 2018 13:20:26 +0000 (14:20 +0100)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 8 Nov 2022 16:03:05 +0000 (17:03 +0100)
drivers/gpio.c

index 5d90c2e..fcecc93 100644 (file)
@@ -200,7 +200,7 @@ void PIO_0_Handler(void)
 
        /* Call interrupt handlers */
        while (status) {
-               if (status & 1) {
+               if (status & 0x01) {
                        /* Is there an handler for this one ? */
                        if (gpio_callbacks_port0[i] != NULL) {
                                gpio_callbacks_port0[i](i);
@@ -220,7 +220,7 @@ void PIO_1_Handler(void)
 
        /* Call interrupt handlers */
        while (status) {
-               if (status & 1) {
+               if (status & 0x01) {
                        /* Is there an handler for this one ? */
                        if (gpio_callbacks_port1[i] != NULL) {
                                gpio_callbacks_port1[i](i);
@@ -240,7 +240,7 @@ void PIO_2_Handler(void)
 
        /* Call interrupt handlers */
        while (status) {
-               if (status & 1) {
+               if (status & 0x01) {
                        /* Is there an handler for this one ? */
                        if (gpio_callbacks_port2[i] != NULL) {
                                gpio_callbacks_port2[i](i);