We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi guys,
I'm new to Keil uVision so go easy on me!
I'm having a very simple problem: I'm trying to see the value of a variable in Watch but it does not show up. The variable is named "angle" and is declared as a 32-bit fp pointer like so:
void MPU6050_RD_DMPDate() { ... f32 *angle; ... angle = imu_get_ang(); ... }
MPU6050_RD_DMPDate() is called from main and imu_get_ang() returns a 32-bit fp pointer as required.
My understanding is that the Watch window is for local variables like the one declared above so should show up fine. Am I wrong about this? Is there a reason why it's not showing up?
Cheers, Tony