Project

General

Profile

Statistics
| Revision:

root / branches / autonomous_recharging / code / projects / libwireless / bayboardTest / main.c @ 705

History | View | Annotate | Download (384 Bytes)

1
#include <bayboard_lib.h>
2
#include <wireless.h>
3
#include <wl_token_ring.h>
4

    
5
int main(void)
6
{
7
        bayboard_init(ALL_ON);
8
        usb_puts("Start.\r\n");
9
        wl_init();
10
        usb_puts("Wireless initialized.\r\n");
11
        //wl_init();
12
        //usb_puts("Wireless initialized.\n");
13
        //wl_send_robot_to_robot_global_packet(3, 9, NULL, 0, 51, 0);
14
        //printf("Command sent to robot %i.\n", 51);
15
        while (1)
16
                ;//wl_do();
17
}