Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

75%
+4 −0
Q&A Disabling breakpoints in real-time section of firmware

Got a question about hazardous breakpoints in real-time firmware. Does C have a mechanism which lets me mark a section of code such that breakpoints are somehow ignored or not allowed just in that...

3 answers  ·  posted 9mo ago by misk94555‭  ·  last activity 9mo ago by Gnomo‭

#1: Initial revision by user avatar misk94555‭ · 2023-08-16T13:22:03Z (9 months ago)
Disabling breakpoints in real-time section of firmware
Got a question about hazardous breakpoints in real-time firmware.

Does C have a mechanism which lets me mark a section of code such that breakpoints are somehow ignored or not allowed just in that section?

I’ve got an STM32 microcontroller which controls an LED flash.  The LED current during the flash is within the LED’s pulse rating, but well above the continuous current rating.  There’s a dozen lines of code between beginning of the pulse and the end of the pulse.  If somebody (myself most likely) slips and sets a breakpoint when the LED is turned on, and the firmware stops at the breakpoint for one second, then the LED will fry.  (No hazard to user.  Just damage of the instrument.)

I don’t have a safeguard in hardware which would disable the power stage.  Perhaps in the next rev of the board I should add a pulse retriggerable one shot which will disable the power stage.