mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
289 B
C
14 lines
289 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include <transceiver.h>
|
|
#include <vtimer.h>
|
|
#include "sys/net/sixlowpan/sixlowip.h"
|
|
#include "sys/net/sixlowpan/sixlowborder.h"
|
|
#include "sys/net/sixlowpan/sixlowerror.h"
|
|
|
|
int main(void)
|
|
{
|
|
border_initialize(TRANSCEIVER_CC1100, NULL);
|
|
}
|