Other Parts Discussed in Thread: TINA-TI
Tool/software: TINA-TI or Spice Models
Hello,
I'm programming with keil c version 5.26. I use TivaWare_C_Series-2.1.4.178 for my code. When I declare the array as follows:
uint16_t length = 9+2*Q_add; uint8_t buffer[length];
I ran the keil debugger c, then hit run, but keil immediately stopped debugging. I use the J-link OB STM32 loaded circuit.
Instead I use the following code then the debugger runs normally
uint16_t length = 9+2*Q_add; uint8_t buffer[100];