I’m currently trying to take advantage of the XBEE Pro’s general purpose flash memory. It’s fairly straightforward to access the flash from another xbee (see General Purpose Flash Memory section in XBee PRO 900 HP Product Manual) via an api request. The explicit api request is made to the DIGI_DEVICE endpoint(0xE6) with the correct calls to the memory management cluster (0x0023) and then you use their bytes for memory commands etc. What is NOT clear, is how I access this memory from a C program written onto the processor itself.
Any tips would be appreciated.
Things I’ve tried:
- I looked into veeprom, but found out that those areas of memory are not overlapping / the same.
2.Creating an envelope to “send to myself” with the correct information above. It didn’t seem to take. See below for a very ham-fisted approach attempt.
uint8_t env_buffer[8];
wpan_envelope_t envelope;
wpan_envelope_create(&envelope,
&xdev.wpan_dev,
&xdev.wpan_dev.address.ieee,
WPAN_NET_ADDR_UNDEFINED);
envelopee.cluster_id = 0x0023;
envelopee.source_endpoint = 0xE6;
envelopee.dest_endpoint = 0xE6;
envelopee.profile_id = 0xC105;
env_buffer[0] = 0x04;
env_buffer[1] = 0x00;
env_buffer[2] = 0x00;
env_buffer[3] = 0x00;
env_buffer[4] = 0x00;
env_buffer[5] = 0x00;
env_buffer[6] = 0x00;
env_buffer[7] = 0x06;
envelope.payload = env_buffer;
envelope.length = 8;
wpan_envelope_send(&envelope);
If there’s anything obvious that I’m missing (simple pointer to the correct memory area with a memcpy read) that would be great.
Many thanks
Matt
p.s. to others. you have to be careful about bit width. all indexes are uint16s (2 bits wide).