In the example-unicast.c program through packetbuf function, I can send string from sender node to receiver node. Now instead of sending string i want to send integer data array. I was trying this packetbuf_copy() I am using contiki 3.0. thank you in advance.
how can I send integer array in unicast example of contiki?
806 Views Asked by nana At
2
There are 2 best solutions below
0

You can use uip_udp_packet_send(struct uip_udp_conn *c, const void *data, int len)
. The code will be:
#define UDP_PORT 1223
uint8_t array[4] = {1, 2, 3, 4};
struct uip_udp_conn *unicastcon;
unicastcon= udp_new(&receiver_ipaddr,UIP_HTONS(UDP_PORT), NULL);
udp_bind(unicastcon, UIP_HTONS(UDP_PORT));
uip_udp_packet_send(unicastcon,array,sizeof(array));
packetbuf_copyfrom()
works with other types of arrays, not only with strings:On receiver's side, use
packetbuf_dataptr()
orpacketbuf_copyto()
to access the data.