You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
304 B
15 lines
304 B
#ifndef _DAP_MAIN_H_ |
|
#define _DAP_MAIN_H_ |
|
|
|
#include "main.h" |
|
|
|
extern volatile uint8_t DAP_USB_IsBulk; |
|
extern volatile uint8_t DAP_Is_Active; |
|
extern volatile uint8_t DIR_IsEN; |
|
|
|
void DAP_RX_CallBack(uint8_t *buf, uint32_t len); |
|
void DAP_TX_CallBack(void); |
|
void DAP_Init(void); |
|
void DAP_Task(void); |
|
|
|
#endif
|
|
|