Other Parts Discussed in Thread: MSP430F2232, MSP430F2274
I need a random number but I can't use time function with msp430F2232 but I can use it with MSP430F2274. Can you suggest a way to use it with msp430f2232
#include <stdlib.h>
#include <time.h>
srand(time(NULL));
Siren_ID=rand();
This is the error message.
run placement fails for object ".stack", size 0x50 (page 0). Available ranges: RAM size:0x200 unused : 0x1f max hole :0x1f
When I delete "srand(time(NULL));" this line the problem disappear.