blob: 2c6c319c69c6621969a14b56159e18b856fadfbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#include <stdlib.h>
#include "platform.h"
#include "eos.h"
#include "interrupt.h"
#include "event.h"
#include "eve.h"
#include "eve_platform.h"
#include "irq_def.h"
static void handle_time(unsigned char type) {
eos_spi_dev_start(EOS_DEV_DISP);
eve_handle_time();
eos_spi_dev_stop();
}
static void handle_evt(unsigned char type, unsigned char *buffer, uint16_t len) {
eos_spi_dev_start(EOS_DEV_DISP);
eve_handle_touch();
eos_spi_dev_stop();
GPIO_REG(GPIO_LOW_IP) = (1 << EVE_PIN_INTR);
GPIO_REG(GPIO_LOW_IE) |= (1 << EVE_PIN_INTR);
}
static void handle_intr(void) {
GPIO_REG(GPIO_LOW_IE) &= ~(1 << EVE_PIN_INTR);
eos_evtq_push_isr(EOS_EVT_UI | EVE_ETYPE_INTR, NULL, 0);
return;
}
void eve_time_sleep(uint32_t ms) {
eos_time_sleep(ms);
}
void eve_timer_set(uint32_t ms) {
eos_timer_set(ms, EOS_TIMER_ETYPE_UI);
}
void eve_timer_clear(void) {
eos_timer_clear(EOS_TIMER_ETYPE_UI);
}
uint64_t eve_time_get_tick(void) {
return eos_time_get_tick();
}
void eve_init_platform(void) {
eos_evtq_set_handler(EOS_EVT_UI, handle_evt);
eos_timer_set_handler(EOS_TIMER_ETYPE_UI, handle_time);
GPIO_REG(GPIO_INPUT_EN) |= (1 << EVE_PIN_INTR);
GPIO_REG(GPIO_OUTPUT_EN) &= ~(1 << EVE_PIN_INTR);
GPIO_REG(GPIO_PULLUP_EN) &= ~(1 << EVE_PIN_INTR);
GPIO_REG(GPIO_OUTPUT_XOR) &= ~(1 << EVE_PIN_INTR);
GPIO_REG(GPIO_LOW_IE) |= (1 << EVE_PIN_INTR);
eos_intr_set(INT_GPIO_BASE + EVE_PIN_INTR, IRQ_PRIORITY_UI, handle_intr);
eos_spi_dev_set_div(EOS_DEV_DISP, 4);
}
|