CC_CONST_FUNCTION replaces some const keywords in order to workaround a sdcc bug, which cannot handle function pointers as const.
This commit is contained in:
parent
b8820a7d89
commit
d194d54e8e
6 changed files with 26 additions and 25 deletions
|
@ -28,7 +28,7 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* $Id: shell-netfile.c,v 1.1 2008/02/04 23:42:17 adamdunkels Exp $
|
||||
* $Id: shell-netfile.c,v 1.2 2008/07/02 15:02:33 matsutsuka Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -86,14 +86,14 @@ write_chunk(struct rudolph0_conn *c, int offset, int flag,
|
|||
}
|
||||
PT_YIELD(&recvnetfilept);
|
||||
} while(flag != RUDOLPH0_FLAG_LASTCHUNK);
|
||||
|
||||
|
||||
shell_output(&recvnetfile_command, data, datalen, "", 0);
|
||||
printf("write_chunk wrote %d bytes at %d\n", datalen, offset);
|
||||
shell_output(&recvnetfile_command, "", 0, "", 0);
|
||||
leds_off(LEDS_YELLOW);
|
||||
receiving_file = 0;
|
||||
process_post(&shell_recvnetfile_process, PROCESS_EVENT_CONTINUE, NULL);
|
||||
|
||||
|
||||
PT_END(&recvnetfilept);
|
||||
}
|
||||
|
||||
|
@ -102,7 +102,7 @@ read_chunk(struct rudolph0_conn *c, int offset, uint8_t *to, int maxsize)
|
|||
{
|
||||
int ret;
|
||||
int fd;
|
||||
|
||||
|
||||
fd = cfs_open(filename, CFS_READ);
|
||||
|
||||
cfs_seek(fd, offset);
|
||||
|
@ -111,14 +111,14 @@ read_chunk(struct rudolph0_conn *c, int offset, uint8_t *to, int maxsize)
|
|||
cfs_close(fd);
|
||||
return ret;
|
||||
}
|
||||
const static struct rudolph0_callbacks rudolph0_callbacks =
|
||||
CC_CONST_FUNCTION static struct rudolph0_callbacks rudolph0_callbacks =
|
||||
{(void (*)(struct rudolph0_conn *, int, int, uint8_t *, int))write_chunk,
|
||||
read_chunk};
|
||||
/*---------------------------------------------------------------------------*/
|
||||
PROCESS_THREAD(shell_netfile_process, ev, data)
|
||||
{
|
||||
int fd;
|
||||
|
||||
|
||||
PROCESS_BEGIN();
|
||||
|
||||
rudolph0_send(&rudolph0_conn, CLOCK_SECOND);
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* $Id: shell-rime-ping.c,v 1.2 2008/02/24 20:33:38 adamdunkels Exp $
|
||||
* $Id: shell-rime-ping.c,v 1.3 2008/07/02 15:02:33 matsutsuka Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -70,7 +70,7 @@ PROCESS_THREAD(shell_ping_process, ev, data)
|
|||
struct ping_msg *ping;
|
||||
const char *nextptr;
|
||||
char buf[32];
|
||||
|
||||
|
||||
PROCESS_BEGIN();
|
||||
|
||||
receiver.u8[0] = shell_strtolong(data, &nextptr);
|
||||
|
@ -84,7 +84,7 @@ PROCESS_THREAD(shell_ping_process, ev, data)
|
|||
|
||||
snprintf(buf, sizeof(buf), "%d.%d", receiver.u8[0], receiver.u8[1]);
|
||||
shell_output_str(&ping_command, "Sending 4 pings to ", buf);
|
||||
|
||||
|
||||
for(i = 0; i < 4; ++i) {
|
||||
rimebuf_clear();
|
||||
ping = rimebuf_dataptr();
|
||||
|
@ -95,7 +95,7 @@ PROCESS_THREAD(shell_ping_process, ev, data)
|
|||
ping->pingtime = rtimer_arch_now();
|
||||
#endif
|
||||
mesh_send(&mesh, &receiver);
|
||||
|
||||
|
||||
etimer_set(&timeout, CLOCK_SECOND * 8);
|
||||
etimer_set(&periodic, CLOCK_SECOND * 1);
|
||||
waiting_for_pong = 1;
|
||||
|
@ -125,7 +125,7 @@ recv_mesh(struct mesh_conn *c, rimeaddr_t *from, u8_t hops)
|
|||
rtimer_clock_t pingrecvtime;
|
||||
|
||||
ping = rimebuf_dataptr();
|
||||
|
||||
|
||||
if(waiting_for_pong == 0) {
|
||||
#if TIMESYNCH_CONF_ENABLED
|
||||
ping->pongtime = timesynch_time();
|
||||
|
@ -144,14 +144,14 @@ recv_mesh(struct mesh_conn *c, rimeaddr_t *from, u8_t hops)
|
|||
(1000L * (ping->pongtime - ping->pingtime)) / RTIMER_ARCH_SECOND,
|
||||
(1000L * (pingrecvtime - ping->pongtime)) / RTIMER_ARCH_SECOND,
|
||||
hops);
|
||||
|
||||
|
||||
shell_output_str(&ping_command,
|
||||
"Pong recived; rtt ", buf);
|
||||
waiting_for_pong = 0;
|
||||
process_post(&shell_ping_process, PROCESS_EVENT_CONTINUE, NULL);
|
||||
}
|
||||
}
|
||||
const static struct mesh_callbacks mesh_callbacks = { recv_mesh,
|
||||
CC_CONST_FUNCTION static struct mesh_callbacks mesh_callbacks = { recv_mesh,
|
||||
NULL,
|
||||
timedout_mesh };
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
@ -159,7 +159,7 @@ void
|
|||
shell_rime_ping_init(void)
|
||||
{
|
||||
mesh_open(&mesh, 19, &mesh_callbacks);
|
||||
|
||||
|
||||
shell_register_command(&ping_command);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue