mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-08-15 12:27:50 +00:00
Corrected sending of two bytes footer
This commit is contained in:
@@ -28,7 +28,7 @@
|
|||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* @(#)$Id: simple-cc2420.c,v 1.1 2007/03/15 21:26:00 adamdunkels Exp $
|
* @(#)$Id: simple-cc2420.c,v 1.2 2007/03/21 23:19:15 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* This code is almost device independent and should be easy to port.
|
* This code is almost device independent and should be easy to port.
|
||||||
@@ -216,7 +216,10 @@ simple_cc2420_send(const u8_t *payload, u8_t payload_len)
|
|||||||
strobe(CC2420_SFLUSHTX); /* Cancel send that never started. */
|
strobe(CC2420_SFLUSHTX); /* Cancel send that never started. */
|
||||||
s = splhigh();
|
s = splhigh();
|
||||||
/* FASTSPI_WRITE_FIFO(hdr, hdr_len);*/
|
/* FASTSPI_WRITE_FIFO(hdr, hdr_len);*/
|
||||||
FASTSPI_WRITE_FIFO(&payload_len, 1);
|
{
|
||||||
|
u8_t total_len = payload_len + 2; /* 2 bytes footer. */
|
||||||
|
FASTSPI_WRITE_FIFO(&total_len, 1);
|
||||||
|
}
|
||||||
FASTSPI_WRITE_FIFO(payload, payload_len);
|
FASTSPI_WRITE_FIFO(payload, payload_len);
|
||||||
splx(s);
|
splx(s);
|
||||||
PRINTF("simple_cc2420_send: wrote %d bytes\n", payload_len);
|
PRINTF("simple_cc2420_send: wrote %d bytes\n", payload_len);
|
||||||
|
Reference in New Issue
Block a user