Hello,
I'm a beginner, I try to retrieve values from a sensor by i2c, but I can't, I'm brought back to this code that I don't understand since I've never done assembler:
ldr sp,=_stack /* Set stack pointer */
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-13 12:52 PM
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-13 1:32 PM
That is the start of the reset handler. Read RCC->CSR bits to determine why the chip reset. Possibly a watchdog issue. The watchdog does not stop in debug mode by default.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-13 1:32 PM
That is the start of the reset handler. Read RCC->CSR bits to determine why the chip reset. Possibly a watchdog issue. The watchdog does not stop in debug mode by default.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-13 1:37 PM
Thank you for your answer, can you tell me how to fix the problem because I am coding in c and my code is supposed to read data from a sensor at an i2c address
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-13 1:49 PM
I have some suggestions in my previous post.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-13 1:52 PM
how to read this bit RCC->CSR bits
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-13 2:02 PM
If you are using STM32CubeIDE, when you're in debug mode, open the SFRs tab and scroll to the RCC peripheral and read the values in the CSR register. Compare those against what is shown in the reference manual to determine the source of the reset.
In the "SFRs" view. (Window -> Show View -> SFRs).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-13 2:13 PM
Here is what I find in the rcc:
Peripheral: RCC
Base address: 0x40021000
there is no value
