![]() |
sponsored links |
|
|
sponsored links
|
|
|
2
28th December 21:34
External User
Posts: 1
|
Not so unique. It sounds like you're running out of RAM and have a wild pointer
that you're writing through, clobbering your code. With more printfs in place, you happen to be writing somewhere that clobbers something else. -- _ Kevin D. Quitt 91387-4454 Kevin@Quitt.net 96.37% of all statistics are made up |
|
|
3
28th December 21:34
External User
Posts: 1
|
Also watch out for the problem of printing something too large (e.g., 64 bytes)
using printf, as it can lock up the system, or at least the I/O. -- _ Kevin D. Quitt 91387-4454 Kevin@Quitt.net 96.37% of all statistics are made up |
|
|
4
28th December 21:34
External User
Posts: 1
|
Hi,
This is probably a stack problem. printfs can mask them. Check for parameter mismatches in function calls. -- Peter Frage****a MIT Lincoln Lab frage****a@ll.mit.edu |
|