forked from Lotlab/nrf52-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
253 lines (225 loc) · 5.1 KB
/
main.c
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/*
Copyright (C) 2018,2019 Jim Jiang <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "CH554_SDCC.h"
#include "DAP_hid.h"
#include "app_timer.h"
#include "compiler.h"
#include "endpoints.h"
#include "interrupt.h"
#include "system.h"
#include "uart.h"
#include "usb_comm.h"
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
typedef void (*func)(void);
const func isp_enter = 0x3800;
/**
* @brief CH554 软复位
*
*/
static void CH554SoftReset()
{
SAFE_MOD = 0x55;
SAFE_MOD = 0xAA;
GLOBAL_CFG |= bSW_RESET;
}
/** \brief CH554设备模式唤醒主机,发送K信号
*
*/
static void CH554USBDevWakeup()
{
UDEV_CTRL |= bUD_LOW_SPEED;
DelayMs(2);
UDEV_CTRL &= ~bUD_LOW_SPEED;
}
/** \brief CH559USB中断处理函数
*/
static INTERRUPT_USING(DeviceInterrupt, INT_NO_USB, 1) //USB中断服务程序,使用寄存器组1
{
UsbIsr();
}
/**
* @brief 按键发送事件
*
*/
static void UsbOnKeySend()
{
if (usb_state.is_sleep && usb_state.remote_wake) {
usb_state.is_sleep = false;
CH554USBDevWakeup();
}
}
/**
* @brief 上传键盘通常按键数据包
*
* @param packet 数据包
* @param len 长度。必须是8
*/
void KeyboardGenericUpload(uint8_t* packet, uint8_t len)
{
if (len != 8)
return;
UsbOnKeySend();
usb_state.is_busy = true;
memcpy(&Ep1Buffer[64], packet, len);
UEP1_T_LEN = len;
UEP1_CTRL = UEP1_CTRL & ~MASK_UEP_T_RES | UEP_T_RES_ACK;
}
/**
* @brief 上传键盘特殊按键数据包
*
* @param packet 数据包,第一个byte为ID
* @param len 长度
*/
void KeyboardExtraUpload(uint8_t* packet, uint8_t len)
{
UsbOnKeySend();
usb_state.is_busy = true;
memcpy(Ep2Buffer, packet, len);
UEP2_T_LEN = len;
UEP2_CTRL = UEP2_CTRL & ~MASK_UEP_T_RES | UEP_T_RES_ACK;
}
/**
* @brief 响应KeyMap下载数据包
*
* @param packet 数据包
* @param len 长度
*/
void ResponseConfigurePacket(uint8_t* packet, uint8_t len)
{
if (len > 64)
return;
usb_state.is_busy = true;
Ep3Buffer[64] = 0x3f; // packet id
memcpy(&Ep3Buffer[65], packet, len);
memset(&Ep3Buffer[65 + len], 0, 64 - len - 2);
UEP3_T_LEN = 64;
UEP3_CTRL = UEP3_CTRL & ~MASK_UEP_T_RES | UEP_T_RES_ACK;
}
/**
* @brief 串口中断
*
*/
static INTERRUPT(UARTInterrupt, INT_NO_UART1)
{
if (U1RI) {
uart_recv();
// U1RI = 0;
}
}
/**
* @brief 禁用看门狗
*
*/
static void DisableWatchDog()
{
SAFE_MOD = 0x55;
SAFE_MOD = 0xaa; //进入安全模式
GLOBAL_CFG &= ~bWDOG_EN; //禁用看门狗复位
SAFE_MOD = 0x00; //退出安全模式
}
/**
* @brief 端点3下传数据。下传的是Keymap数据包
*
*/
void EP3_OUT()
{
uint8_t len = Ep3Buffer[2] + 2;
if (Ep3Buffer[1] == 0xF0 && len == 2) {
DisableWatchDog();
USB_CTRL = 0;
UDEV_CTRL = 0x80;
DelayMs(10);
isp_enter();
}
uart_send_keymap(&Ep3Buffer[1], len);
}
/**
* @brief 端点1下传数据,里面的是键盘LED状态
*
*/
void EP1_OUT()
{
uint8_t datalen = USB_RX_LEN;
uart_send_led(Ep1Buffer[0]);
}
/**
* @brief 启用看门狗
*
*/
static void EnableWatchDog()
{
SAFE_MOD = 0x55;
SAFE_MOD = 0xaa; //进入安全模式
GLOBAL_CFG |= bWDOG_EN; //启动看门狗复位
SAFE_MOD = 0x00; //退出安全模式
WDOG_COUNT = 0; //看门狗赋初值
}
/**
* @brief 喂狗
*
*/
static void FeedWatchDog()
{
WDOG_COUNT = 0x00;
}
/** 定义定时器 */
const timer_info timers[] = {
TIMER_DEF(&FeedWatchDog, 500),
TIMER_DEF(&uart_check, 1),
#ifdef ONBOARD_CMSIS_DAP
TIMER_DEF(&Dap_Routine, 1)
#endif
};
TIMER_INIT(timer, timers)
static INTERRUPT(TimerInterrupt, INT_NO_TKEY)
{
TKEY_CTRL = 0;
timer_tick();
}
/**
* @brief USB睡眠事件
*
*/
void UsbSuspendEvt(bool suspend)
{
usb_state.is_sleep = suspend;
}
static void main()
{
CfgSysClock();
DelayMs(5); //修改主频等待内部晶振稳定,必加
// InitUART(); //串口0初始化
uart_init();
DelayMs(5);
// printf_tiny("Build %s %s\n", __TIME__, __DATE__);
IE_TKEY = 1; // 运行Timer
USBDeviceInit(); //USB设备模式初始化
EnableWatchDog();
#ifdef ONBOARD_CMSIS_DAP
Dap_Init();
#endif
EA = 1; //允许单片机中断
UEP1_T_LEN = 0; //预使用发送长度一定要清空
UEP2_T_LEN = 0; //预使用发送长度一定要清空
UEP3_T_LEN = 0;
UEP4_T_LEN = 0;
// 拉低P1.5,通知主控使用UART接收
P1_MOD_OC -= (P1_MOD_OC & bMOSI);
MOSI = false;
while (1) {
timer_task_exec();
}
}