2021-06-13 23:32:21 +00:00
|
|
|
/*
|
2021-01-31 03:43:09 +00:00
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 Ha Thach (tinyusb.org)
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2021-06-12 19:35:46 +00:00
|
|
|
#include "tusb_config.h"
|
|
|
|
|
2021-06-06 03:10:36 +00:00
|
|
|
#include "bsp/board.h" /* a tinyusb header */
|
2021-01-31 03:43:09 +00:00
|
|
|
#include "tusb.h"
|
|
|
|
|
|
|
|
#include "DAP_config.h" /* ARM code *assumes* this is included prior to DAP.h */
|
|
|
|
#include "DAP.h"
|
|
|
|
|
2021-06-14 00:01:35 +00:00
|
|
|
#include "util.h"
|
2021-06-06 03:10:36 +00:00
|
|
|
#include "protocfg.h"
|
|
|
|
#include "protos.h"
|
2021-06-07 23:22:55 +00:00
|
|
|
#include "libco.h"
|
|
|
|
|
2021-06-06 03:10:36 +00:00
|
|
|
#ifdef PICO_BOARD
|
|
|
|
#include <pico/binary_info.h>
|
2021-06-15 01:25:29 +00:00
|
|
|
/*#include <hardware/i2c.h>
|
|
|
|
#include "pinout.h"*/
|
2021-06-06 03:10:36 +00:00
|
|
|
#endif
|
2021-02-25 23:45:13 +00:00
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
static cothread_t mainthread;
|
2021-06-07 23:22:55 +00:00
|
|
|
|
|
|
|
void thread_yield(void) {
|
2021-06-13 23:32:21 +00:00
|
|
|
co_switch(mainthread);
|
2021-06-07 23:22:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
#define DEFAULT_STACK_SIZE 1024
|
|
|
|
|
2021-06-07 23:22:55 +00:00
|
|
|
#ifdef DBOARD_HAS_UART
|
2021-06-13 23:32:21 +00:00
|
|
|
static cothread_t uartthread;
|
|
|
|
static uint8_t uartstack[DEFAULT_STACK_SIZE];
|
|
|
|
|
2021-06-07 23:22:55 +00:00
|
|
|
static void uart_thread_fn(void) {
|
2021-06-13 23:32:21 +00:00
|
|
|
cdc_uart_init();
|
|
|
|
thread_yield();
|
|
|
|
while (1) {
|
|
|
|
cdc_uart_task();
|
|
|
|
thread_yield();
|
|
|
|
}
|
2021-06-07 23:22:55 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DBOARD_HAS_SERPROG
|
2021-06-13 23:32:21 +00:00
|
|
|
static cothread_t serprogthread;
|
|
|
|
static uint8_t serprogstack[DEFAULT_STACK_SIZE];
|
|
|
|
|
2021-06-07 23:22:55 +00:00
|
|
|
static void serprog_thread_fn(void) {
|
|
|
|
cdc_serprog_init();
|
|
|
|
thread_yield();
|
|
|
|
while (1) {
|
|
|
|
cdc_serprog_task();
|
|
|
|
thread_yield();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
// FIXME
|
2021-06-07 23:22:55 +00:00
|
|
|
extern uint32_t co_active_buffer[64];
|
|
|
|
uint32_t co_active_buffer[64];
|
|
|
|
extern cothread_t co_active_handle;
|
|
|
|
cothread_t co_active_handle;
|
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
int main(void) {
|
|
|
|
mainthread = co_active();
|
2021-06-07 23:22:55 +00:00
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
// TODO: split this out in a bsp-specific file
|
2021-06-12 19:35:46 +00:00
|
|
|
#if defined(PICO_BOARD) && !defined(USE_USBCDC_FOR_STDIO)
|
2021-06-13 23:32:21 +00:00
|
|
|
// use hardcoded values from TinyUSB board.h
|
|
|
|
bi_decl(bi_2pins_with_func(0, 1, GPIO_FUNC_UART));
|
2021-06-15 01:25:29 +00:00
|
|
|
/*i2c_init(PINOUT_I2C_DEV, 100*1000);
|
|
|
|
|
|
|
|
gpio_set_function(PINOUT_I2C_SCL, GPIO_FUNC_I2C);
|
|
|
|
gpio_set_function(PINOUT_I2C_SDA, GPIO_FUNC_I2C);
|
|
|
|
gpio_pull_up(PINOUT_I2C_SCL);
|
|
|
|
gpio_pull_up(PINOUT_I2C_SDA);
|
|
|
|
|
|
|
|
bi_decl(bi_2pins_with_func(PINOUT_I2C_SCL, PINOUT_I2C_SDA, GPIO_FUNC_I2C));*/
|
2021-06-06 03:10:36 +00:00
|
|
|
#endif
|
2021-06-13 23:32:21 +00:00
|
|
|
board_init();
|
2021-06-06 03:10:36 +00:00
|
|
|
|
|
|
|
#ifdef DBOARD_HAS_UART
|
2021-06-13 23:32:21 +00:00
|
|
|
uartthread = co_derive(uartstack, sizeof uartstack, uart_thread_fn);
|
|
|
|
co_switch(uartthread); // will call cdc_uart_init() on correct thread
|
2021-06-06 03:10:36 +00:00
|
|
|
#endif
|
|
|
|
#ifdef DBOARD_HAS_SERPROG
|
2021-06-13 23:32:21 +00:00
|
|
|
serprogthread = co_derive(serprogstack, sizeof serprogstack, serprog_thread_fn);
|
|
|
|
co_switch(serprogthread); // will call cdc_serprog_init() on correct thread
|
2021-06-13 16:47:46 +00:00
|
|
|
#endif
|
2021-06-06 03:10:36 +00:00
|
|
|
#ifdef DBOARD_HAS_CMSISDAP
|
2021-06-13 23:32:21 +00:00
|
|
|
DAP_Setup();
|
2021-06-06 03:10:36 +00:00
|
|
|
#endif
|
2021-01-31 03:43:09 +00:00
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
tusb_init();
|
2021-01-31 03:43:09 +00:00
|
|
|
|
2021-06-12 19:35:46 +00:00
|
|
|
#ifdef USE_USBCDC_FOR_STDIO
|
2021-06-13 23:32:21 +00:00
|
|
|
stdio_usb_init();
|
2021-06-12 19:35:46 +00:00
|
|
|
#endif
|
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
while (1) {
|
2021-06-15 01:25:29 +00:00
|
|
|
/*uint8_t val = 0x12;
|
|
|
|
i2c_write_timeout_us(PINOUT_I2C_DEV, 0x13, &val, 1, false, 1000*1000);*/
|
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
tud_task(); // tinyusb device task
|
2021-06-06 03:10:36 +00:00
|
|
|
#ifdef DBOARD_HAS_UART
|
2021-06-13 23:32:21 +00:00
|
|
|
co_switch(uartthread);
|
2021-06-06 03:10:36 +00:00
|
|
|
#endif
|
2021-06-07 23:22:55 +00:00
|
|
|
|
2021-06-15 01:25:29 +00:00
|
|
|
//i2c_write_timeout_us(PINOUT_I2C_DEV, 0x13, &val, 1, false, 1000*1000);
|
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
tud_task(); // tinyusb device task
|
2021-06-06 03:10:36 +00:00
|
|
|
#ifdef DBOARD_HAS_SERPROG
|
2021-06-13 23:32:21 +00:00
|
|
|
co_switch(serprogthread);
|
2021-06-13 16:47:46 +00:00
|
|
|
#endif
|
2021-06-13 23:32:21 +00:00
|
|
|
}
|
2021-06-13 16:47:46 +00:00
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
return 0;
|
2021-01-31 03:43:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// USB HID
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
|
|
|
// Invoked when received GET_REPORT control request
|
|
|
|
// Application must fill buffer report's content and return its length.
|
|
|
|
// Return zero will cause the stack to STALL request
|
2021-06-13 23:32:21 +00:00
|
|
|
uint16_t tud_hid_get_report_cb(uint8_t instance, uint8_t report_id,
|
|
|
|
hid_report_type_t report_type, uint8_t* buffer, uint16_t reqlen) {
|
|
|
|
// TODO not Implemented
|
|
|
|
(void) instance;
|
|
|
|
(void) report_id;
|
|
|
|
(void) report_type;
|
|
|
|
(void) buffer;
|
|
|
|
(void) reqlen;
|
|
|
|
|
|
|
|
return 0;
|
2021-01-31 03:43:09 +00:00
|
|
|
}
|
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
void tud_hid_set_report_cb(uint8_t instance, uint8_t report_id,
|
|
|
|
hid_report_type_t report_type, uint8_t const* RxDataBuffer, uint16_t bufsize) {
|
|
|
|
static uint8_t TxDataBuffer[CFG_TUD_HID_EP_BUFSIZE];
|
|
|
|
uint32_t response_size = TU_MIN(CFG_TUD_HID_EP_BUFSIZE, bufsize);
|
2021-01-31 03:43:09 +00:00
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
// This doesn't use multiple report and report ID
|
|
|
|
(void) instance;
|
|
|
|
(void) report_id;
|
|
|
|
(void) report_type;
|
2021-01-31 03:43:09 +00:00
|
|
|
|
2021-06-06 03:10:36 +00:00
|
|
|
#ifdef DBOARD_HAS_CMSISDAP
|
2021-06-13 23:32:21 +00:00
|
|
|
DAP_ProcessCommand(RxDataBuffer, TxDataBuffer);
|
2021-06-06 03:10:36 +00:00
|
|
|
#endif
|
2021-01-31 03:43:09 +00:00
|
|
|
|
2021-06-13 23:32:21 +00:00
|
|
|
tud_hid_report(0, TxDataBuffer, response_size);
|
2021-01-31 03:43:09 +00:00
|
|
|
}
|
2021-06-13 23:32:21 +00:00
|
|
|
|