Gast
#359695
Hallo,
mein Code setzt beim Debuggen ziemlich schnell aus und zwar:
C-File:
..
int main(void)
{
struct com_buf test;
struct com_buf buffer, *packet;
packet = &write_txfifo;
buffer.len = write_txfifo.len; HIER!!!
das steht noch im eingebundenen Headerfile:
struct com_buf {
uint8_t len;
uint8_t buf[128];
};
static struct com_buf write_txfifo = {
/* LEN, FCF0, FCF1, DSNo, */
.buf = { 0x3E, 0x0F, 0x61, 0x88, 0x01, DEST_PANID1, \
DEST_PANID0, DEST_SHORTADR1, DEST_SHORTADR0, \
SHORTADR1, SHORTADR0, 0xde, 0xad, 0xbe, 0xef},
.len = 15,
};
In der Watch im AVR-Studio steht die Meldung wie im Anhang
Ich versteh nicht, was der für Probleme hat?!


