Hi everyone.
I just started working with maple, and i cant seem to figure out how i can refer to the register of the Chip. In arduino, you just had to write down the mane of the register, something like:
DDRB=0x01;
PORTB=0x01;
In maple, however, when i try to write the names of the registers, as mentioned in the official STM32F103 reference manual, the compiler says they are not defined.
After searching the forum, i found out how to refer to the GPIO registers, e.g:
(GPIO_BASE)->ODR = 0x01;
but i couldn't find any documentation about the full list of "names" for all the registers.
More specifically, i'm trying to set up an I2C network, without using the library functions provided, and i can't access the relevant registers.
Any help finding the full list of these register names will be much appreciated!