Hi I am at a loss, i have some training with C++ but when it comes to jargon words, I am very confused as I cannot find references for them. It's very different from programming for program for PC, not program for chip.
I know when it comes to words for the constants and variables. I know where to look for declarations. But when it comes to words for hardware parts like - GPIOB->ODR, - TIM1->SR, - and in any other projects
How on earth can I find their references or information?
Clement
You should recognise TIM1->SR a a standard C/C++ pointer reference to a structure member?
TIM1_SR is a C/C++ symbol: if you right-click it in uVision, choose 'Go To Definition', that will take you to its definition - probably a header file somewhere.