Mbed gpio_t

less than 1 minute read

If you don’t use variables, computer regards there is nothing.

int a = 3;
int b = 5;
int c = 0;
———–
c = a + b; <- nothing

Mbed

Therefore,

direct connect to hardware(memory)
-> volatile
-> gpio_t (mbed) -> struct __IO

Go to top

Leave a comment