Tagged Questions
0
votes
2answers
191 views
Significance of Reset Vector in Modern Processors
I am trying to understand how computer boots up in very detail.
I came across two things which made me more curious,
1. RAM is placed at the bottom of ROM, to avoid Memory Holes as in Z80 ...
3
votes
2answers
95 views
Static Redefine after reboot of embedded System C
I work on an embedded System - not a windows system.
I declare:
static uint_8 i = 0;
So i is defined 0 at start moment.
The question: After a reset is i redefined as 0 or does it get a junk ...
1
vote
2answers
160 views
C - Losing pointee struct values
**Updated. Sorry to those whose answers no longer make sense.
So I figured out that no matter what I put on the line after Data_pair_node, after it executes, thats when the thing is reset! WTH? :
...
6
votes
3answers
1k views
How to detect cold boot versus warm boot on an ARM processor?
I'm looking for a way to determine whether an ARM processor is booting from a cold boot (i.e. initial power-on) versus a warm boot (i.e. reset assertion without actual power loss). Specifically I'm ...
3
votes
4answers
3k views
How to reset static variables within a function
Is there a way to reset variables declared as static within a function? The goal is to make sure that the function is not called with lingering values from an unrelated call. For example, I have a ...
3
votes
2answers
2k views
The Cleanest Reset for an ARM Processor
Lately, I've been cleaning up some some C code that runs on an ARM7 controller. In some situations (upgrade, fatal error, etc...) the program will perform a reset. Presently it just jumps to 0 and ...
1
vote
4answers
3k views
How can I reset an array of strings in C language?
I have a loop that populates "char array_of_strings[100][100];"
At some point I want to be able to clean it from all the strings added so far and start adding from position 0. How can I clean/rest it ...
6
votes
7answers
641 views
why does this happen (see image)?
Why does the following have the effect it does - it prints a terminal full of random characters and then exits leaving a command prompt that produces garbage when you type in it. (I tried it because I ...