* Enable rtimers.
* Specify port direction first.
This commit is contained in:
parent
24ffa8cfaf
commit
b72c228379
|
@ -47,6 +47,7 @@
|
||||||
|
|
||||||
#include "sys/procinit.h"
|
#include "sys/procinit.h"
|
||||||
#include "sys/autostart.h"
|
#include "sys/autostart.h"
|
||||||
|
#include "sys/rtimer.h"
|
||||||
|
|
||||||
#include "dev/adc.h"
|
#include "dev/adc.h"
|
||||||
#include "dev/dma.h"
|
#include "dev/dma.h"
|
||||||
|
@ -81,12 +82,12 @@ set_rime_addr(void)
|
||||||
static void
|
static void
|
||||||
msb_ports_init(void)
|
msb_ports_init(void)
|
||||||
{
|
{
|
||||||
P1SEL = 0x00; P1OUT = 0x00; P1DIR = 0x00;
|
P1DIR = 0x00; P1SEL = 0x00; P1OUT = 0x00;
|
||||||
P2SEL = 0x00; P2OUT = 0x18; P2DIR = 0x1A;
|
P2DIR = 0x1A; P2SEL = 0x00; P2OUT = 0x18;
|
||||||
P3SEL = 0x00; P3OUT = 0x09; P3DIR = 0x21;
|
P3DIR = 0x21; P3SEL = 0x00; P3OUT = 0x09;
|
||||||
P4SEL = 0x00; P4OUT = 0x00; P4DIR = 0x00;
|
P4DIR = 0x00; P4SEL = 0x00; P4OUT = 0x07;
|
||||||
P5SEL = 0x0E; P5OUT = 0xF9; P5DIR = 0xFD;
|
P5DIR = 0xFD; P5SEL = 0x0E; P5OUT = 0xF9;
|
||||||
P6SEL = 0x07; P6OUT = 0x00; P6DIR = 0xC8;
|
P6DIR = 0xC8; P6SEL = 0x07; P6OUT = 0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -120,6 +121,8 @@ main(void)
|
||||||
slip_arch_init(BAUD2UBR(115200));
|
slip_arch_init(BAUD2UBR(115200));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
rtimer_init();
|
||||||
|
|
||||||
/* System services */
|
/* System services */
|
||||||
process_start(&etimer_process, NULL);
|
process_start(&etimer_process, NULL);
|
||||||
//process_start(&sensors_process, NULL);
|
//process_start(&sensors_process, NULL);
|
||||||
|
|
Loading…
Reference in a new issue