mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-21 05:06:39 +01:00
12 lines
196 B
C
12 lines
196 B
C
#include "asmUtil.h"
|
|
#include "printf.h"
|
|
#include "screen.h"
|
|
#include "cpu.h"
|
|
|
|
|
|
void clockingAndIntsInit(void)
|
|
{
|
|
IEN0 = 0;
|
|
CLKEN = 0x00; //timers only for now
|
|
CLKSPEED = 0x01; //fast crystal
|
|
} |