I using freertos on my project. My code is stuck in hardfault handler, I want know last executed function address or last executed line address for debugging.How to debug code when PC is pointing Hardfault handler.
FreeRtos how to store function address while context switching
166 views Asked by chandan mishra At
1
There are 1 answers
Related Questions in FREERTOS
- Amazon IoT OTA update Signature verification failed
- Encountering Core panic'ed when trying to use FreeRTOS queue in esp32
- Failing write/read on RH850 with NOR flash
- Sending struct through queue
- ESP8266 - Unable to connect to MQTT Server via SSL (mutual authentication)
- Why vTaskList and vTaskListTasks not working on FreeRTOS 11.0.1?
- Can't get watchdog to kick on freeRTOS application using S32K mcu
- Stack smashing protect failure! in ESP32
- FreeRTOS: Simple Queue program, values of Queue are not being printed on Serial Monitor
- stm32 FreeRTOS Interrupt cannot run smooth as i think
- ESP-32 (FreeRTOS): The serial monitor prints unknown symbols (???) instead of a string
- FreeRTOS Callback vs. Queue
- Failure on receiving a 64 bits return value
- how can my program tell if code is in a interrupt handler?(riscv32)
- ESP-IDF Compile error while Building CXX object file. ninja: build stopped: subcommand failed
Related Questions in STM32F4
- Program doesn't run after DFU
- STM32 unable to be read
- Blackpill's adc read error when trying to read an NTC
- STM32 Not recognized by Windows 10
- How to get BVP data from a PulseSensor XD-58C?
- SWO on a Blackpill board
- How to generate two signals with variable frequency and constant phase difference?
- How to compile STM Blackpill code in Keil uVision 5?
- Why the value of DMA_GetCurrDataCounter() does not change, and the program can't run into the interrupt function, as I send some hex number to stm32?
- How to make a proper delay in a microcontroller?
- NUCLEO F429ZI board - Ethernet over usb - zperf example communication issue
- Why my microprocessor stm32f401cb always reads the first adc channel PA0
- Why my led is not responding according to my adc converted potentiometer value?
- Why my microprocessor cannot read analog potentiometer value
- Why my leds does not response to my interrupts
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
That information is 100% dependent on which microcontroller you are using, and also which tool chain you are using as some IDEs will do this for you. You failed to provide either piece of information, so are asking people to guess on your behalf. A good question is one that cannot only possibly be answered by another question.
I am going to guess you are using a Cortex-M microcontroller, in which case information on debugging a hard fault can be found on lots of links found by Google, including the following: http://www.freertos.org/Debugging-Hard-Faults-On-Cortex-M-Microcontrollers.html