| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * The MIT License (MIT) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. | 
					
						
							| 
									
										
										
										
											2021-01-23 00:32:14 +07:00
										 |  |  |  * Copyright (c) 2021, Ha Thach (tinyusb.org) | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of the TinyUSB stack. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "pico/stdlib.h"
 | 
					
						
							| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  | #include "pico/binary_info.h"
 | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  | #include "pico/unique_id.h"
 | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | #include "hardware/gpio.h"
 | 
					
						
							|  |  |  | #include "hardware/sync.h"
 | 
					
						
							| 
									
										
										
										
											2023-12-11 17:56:10 +07:00
										 |  |  | #include "hardware/resets.h"
 | 
					
						
							| 
									
										
										
										
											2024-07-29 12:28:58 -05:00
										 |  |  | #include "hardware/clocks.h"
 | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | #include "hardware/structs/ioqspi.h"
 | 
					
						
							|  |  |  | #include "hardware/structs/sio.h"
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 15:44:05 +07:00
										 |  |  | #include "bsp/board_api.h"
 | 
					
						
							| 
									
										
										
										
											2021-01-23 00:32:14 +07:00
										 |  |  | #include "board.h"
 | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | #ifdef UART_DEV
 | 
					
						
							|  |  |  | static uart_inst_t *uart_inst; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-22 18:51:32 +07:00
										 |  |  | #if (CFG_TUH_ENABLED && CFG_TUH_RPI_PIO_USB) || (CFG_TUD_ENABLED && CFG_TUD_RPI_PIO_USB)
 | 
					
						
							| 
									
										
										
										
											2022-06-08 01:17:01 +07:00
										 |  |  | #include "pio_usb.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | #if CFG_TUH_ENABLED && CFG_TUH_MAX3421
 | 
					
						
							|  |  |  | #include "hardware/spi.h"
 | 
					
						
							|  |  |  | static void max3421_init(void); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-23 00:32:14 +07:00
										 |  |  | #ifdef BUTTON_BOOTSEL
 | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | // This example blinks the Picoboard LED when the BOOTSEL button is pressed.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Picoboard has a button attached to the flash CS pin, which the bootrom
 | 
					
						
							|  |  |  | // checks, and jumps straight to the USB bootcode if the button is pressed
 | 
					
						
							|  |  |  | // (pulling flash CS low). We can check this pin in by jumping to some code in
 | 
					
						
							|  |  |  | // SRAM (so that the XIP interface is not required), floating the flash CS
 | 
					
						
							|  |  |  | // pin, and observing whether it is pulled low.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This doesn't work if others are trying to access flash at the same time,
 | 
					
						
							|  |  |  | // e.g. XIP streamer, or the other core.
 | 
					
						
							| 
									
										
										
										
											2022-06-27 11:50:17 +07:00
										 |  |  | bool __no_inline_not_in_flash_func(get_bootsel_button)(void) { | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   const uint CS_PIN_INDEX = 1; | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   // Must disable interrupts, as interrupt handlers may be in flash, and we
 | 
					
						
							|  |  |  |   // are about to temporarily disable flash access!
 | 
					
						
							|  |  |  |   uint32_t flags = save_and_disable_interrupts(); | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   // Set chip select to Hi-Z
 | 
					
						
							|  |  |  |   hw_write_masked(&ioqspi_hw->io[CS_PIN_INDEX].ctrl, | 
					
						
							|  |  |  |                   GPIO_OVERRIDE_LOW << IO_QSPI_GPIO_QSPI_SS_CTRL_OEOVER_LSB, | 
					
						
							|  |  |  |                   IO_QSPI_GPIO_QSPI_SS_CTRL_OEOVER_BITS); | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   // Note we can't call into any sleep functions in flash right now
 | 
					
						
							|  |  |  |   for (volatile int i = 0; i < 1000; ++i); | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   // The HI GPIO registers in SIO can observe and control the 6 QSPI pins.
 | 
					
						
							|  |  |  |   // Note the button pulls the pin *low* when pressed.
 | 
					
						
							| 
									
										
										
										
											2024-11-07 12:16:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-11 21:55:30 +07:00
										 |  |  |   #ifdef __ARM_ARCH_6M__ // CM0 for rp2040
 | 
					
						
							| 
									
										
										
										
											2024-11-07 12:16:42 +01:00
										 |  |  |     #define CS_BIT (1u << 1)
 | 
					
						
							| 
									
										
										
										
											2024-11-11 21:55:30 +07:00
										 |  |  |   #else // rp2350 (cm33/risv)
 | 
					
						
							| 
									
										
										
										
											2024-11-07 12:16:42 +01:00
										 |  |  |     #define CS_BIT SIO_GPIO_HI_IN_QSPI_CSN_BITS
 | 
					
						
							|  |  |  |   #endif
 | 
					
						
							|  |  |  |   bool button_state = (sio_hw->gpio_hi_in & CS_BIT); | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   // Need to restore the state of chip select, else we are going to have a
 | 
					
						
							|  |  |  |   // bad time when we return to code in flash!
 | 
					
						
							|  |  |  |   hw_write_masked(&ioqspi_hw->io[CS_PIN_INDEX].ctrl, | 
					
						
							|  |  |  |                   GPIO_OVERRIDE_NORMAL << IO_QSPI_GPIO_QSPI_SS_CTRL_OEOVER_LSB, | 
					
						
							|  |  |  |                   IO_QSPI_GPIO_QSPI_SS_CTRL_OEOVER_BITS); | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   restore_interrupts(flags); | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   return button_state; | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-01-23 00:32:14 +07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | //------------- Segger RTT retarget -------------//
 | 
					
						
							|  |  |  | #if defined(LOGGER_RTT)
 | 
					
						
							|  |  |  | // Logging with RTT
 | 
					
						
							| 
									
										
										
										
											2021-03-04 18:36:18 +07:00
										 |  |  | // - If RTT Control Block is not found by 'Auto Detection` try to use 'Search Range` with '0x20000000 0x10000'
 | 
					
						
							|  |  |  | // - SWD speed is rather slow around 1000Khz
 | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | #include "pico/stdio/driver.h"
 | 
					
						
							|  |  |  | #include "SEGGER_RTT.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | static void stdio_rtt_write (const char *buf, int length) { | 
					
						
							| 
									
										
										
										
											2023-06-26 17:03:45 +07:00
										 |  |  |   SEGGER_RTT_Write(0, buf, (unsigned) length); | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | static int stdio_rtt_read (char *buf, int len) { | 
					
						
							| 
									
										
										
										
											2023-06-26 17:03:45 +07:00
										 |  |  |   return (int) SEGGER_RTT_Read(0, buf, (unsigned) len); | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | static stdio_driver_t stdio_rtt = { | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  |   .out_chars = stdio_rtt_write, | 
					
						
							|  |  |  |   .out_flush = NULL, | 
					
						
							|  |  |  |   .in_chars = stdio_rtt_read | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | void stdio_rtt_init(void) { | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  |   stdio_set_driver_enabled(&stdio_rtt, true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | void board_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-22 18:51:32 +07:00
										 |  |  | #if (CFG_TUH_ENABLED && CFG_TUH_RPI_PIO_USB) || (CFG_TUD_ENABLED && CFG_TUD_RPI_PIO_USB)
 | 
					
						
							| 
									
										
										
										
											2022-03-01 23:55:53 +07:00
										 |  |  |   // Set the system clock to a multiple of 120mhz for bitbanging USB with pico-usb
 | 
					
						
							|  |  |  |   set_sys_clock_khz(120000, true); | 
					
						
							| 
									
										
										
										
											2022-06-08 01:17:01 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-24 21:42:31 +07:00
										 |  |  | #ifdef PICO_DEFAULT_PIO_USB_VBUSEN_PIN
 | 
					
						
							| 
									
										
										
										
											2023-03-23 13:08:09 +07:00
										 |  |  |   gpio_init(PICO_DEFAULT_PIO_USB_VBUSEN_PIN); | 
					
						
							|  |  |  |   gpio_set_dir(PICO_DEFAULT_PIO_USB_VBUSEN_PIN, GPIO_OUT); | 
					
						
							| 
									
										
										
										
											2023-04-24 21:42:31 +07:00
										 |  |  |   gpio_put(PICO_DEFAULT_PIO_USB_VBUSEN_PIN, PICO_DEFAULT_PIO_USB_VBUSEN_STATE); | 
					
						
							| 
									
										
										
										
											2022-11-06 14:44:18 +07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-08 01:17:01 +07:00
										 |  |  |   // rp2040 use pico-pio-usb for host tuh_configure() can be used to passed pio configuration to the host stack
 | 
					
						
							|  |  |  |   // Note: tuh_configure() must be called before tuh_init()
 | 
					
						
							|  |  |  |   pio_usb_configuration_t pio_cfg = PIO_USB_DEFAULT_CONFIG; | 
					
						
							| 
									
										
										
										
											2023-03-23 13:08:09 +07:00
										 |  |  |   pio_cfg.pin_dp = PICO_DEFAULT_PIO_USB_DP_PIN; | 
					
						
							| 
									
										
										
										
											2022-06-08 01:17:01 +07:00
										 |  |  |   tuh_configure(BOARD_TUH_RHPORT, TUH_CFGID_RPI_PIO_USB_CONFIGURATION, &pio_cfg); | 
					
						
							| 
									
										
										
										
											2022-05-20 17:25:30 -05:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-03-01 23:55:53 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-21 15:49:38 +07:00
										 |  |  | #ifdef LED_PIN
 | 
					
						
							|  |  |  |   bi_decl(bi_1pin_with_name(LED_PIN, "LED")); | 
					
						
							|  |  |  |   gpio_init(LED_PIN); | 
					
						
							|  |  |  |   gpio_set_dir(LED_PIN, GPIO_OUT); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Button
 | 
					
						
							|  |  |  | #ifndef BUTTON_BOOTSEL
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 15:14:56 +07:00
										 |  |  | #ifdef UART_DEV
 | 
					
						
							| 
									
										
										
										
											2023-07-28 11:19:08 +02:00
										 |  |  |   bi_decl(bi_2pins_with_func(UART_TX_PIN, UART_RX_PIN, GPIO_FUNC_UART)); | 
					
						
							| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  |   uart_inst = uart_get_instance(UART_DEV); | 
					
						
							|  |  |  |   stdio_uart_init_full(uart_inst, CFG_BOARD_UART_BAUDRATE, UART_TX_PIN, UART_RX_PIN); | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(LOGGER_RTT)
 | 
					
						
							|  |  |  |   stdio_rtt_init(); | 
					
						
							| 
									
										
										
										
											2021-01-27 16:37:31 +07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-23 21:46:40 +07:00
										 |  |  | #if CFG_TUD_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-06-08 01:17:01 +07:00
										 |  |  |   // TODO probably set up device mode?
 | 
					
						
							| 
									
										
										
										
											2021-01-23 00:12:10 +07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-23 21:49:11 +07:00
										 |  |  | #if CFG_TUH_ENABLED
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   #if CFG_TUH_MAX3421
 | 
					
						
							|  |  |  |   max3421_init(); | 
					
						
							|  |  |  |   #endif
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-12-11 17:48:27 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !CFG_TUD_ENABLED && !CFG_TUH_ENABLED
 | 
					
						
							|  |  |  |   // board test exxample, reset usb controller
 | 
					
						
							|  |  |  |   reset_block(RESETS_RESET_USBCTRL_BITS); | 
					
						
							|  |  |  |   unreset_block_wait(RESETS_RESET_USBCTRL_BITS); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // Board porting API
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  | void board_led_write(bool state) { | 
					
						
							| 
									
										
										
										
											2022-06-27 11:50:17 +07:00
										 |  |  |   (void) state; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-18 11:53:18 +00:00
										 |  |  | #ifdef LED_PIN
 | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  |   gpio_put(LED_PIN, state ? LED_STATE_ON : (1 - LED_STATE_ON)); | 
					
						
							| 
									
										
										
										
											2021-02-18 11:53:18 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  | uint32_t board_button_read(void) { | 
					
						
							| 
									
										
										
										
											2021-01-23 00:32:14 +07:00
										 |  |  | #ifdef BUTTON_BOOTSEL
 | 
					
						
							|  |  |  |   return BUTTON_STATE_ACTIVE == get_bootsel_button(); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |   return 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  | size_t board_get_unique_id(uint8_t id[], size_t max_len) { | 
					
						
							|  |  |  |   pico_unique_board_id_t pico_id; | 
					
						
							|  |  |  |   pico_get_unique_board_id(&pico_id); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   size_t len = PICO_UNIQUE_BOARD_ID_SIZE_BYTES; | 
					
						
							| 
									
										
										
										
											2024-10-10 16:22:12 +07:00
										 |  |  |   if (len > max_len) { | 
					
						
							|  |  |  |     len = max_len; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   memcpy(id, pico_id.id, len); | 
					
						
							|  |  |  |   return len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int board_uart_read(uint8_t *buf, int len) { | 
					
						
							| 
									
										
										
										
											2023-02-22 15:14:56 +07:00
										 |  |  | #ifdef UART_DEV
 | 
					
						
							| 
									
										
										
										
											2022-11-21 15:49:38 +07:00
										 |  |  |   int count = 0; | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  |   while ( (count < len) && uart_is_readable(uart_inst) ) { | 
					
						
							| 
									
										
										
										
											2022-11-21 15:49:38 +07:00
										 |  |  |     buf[count] = uart_getc(uart_inst); | 
					
						
							|  |  |  |     count++; | 
					
						
							| 
									
										
										
										
											2021-01-23 00:32:14 +07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2022-11-21 15:49:38 +07:00
										 |  |  |   return count; | 
					
						
							| 
									
										
										
										
											2021-01-27 16:37:31 +07:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2022-06-27 11:50:17 +07:00
										 |  |  |   (void) buf; (void) len; | 
					
						
							| 
									
										
										
										
											2021-01-23 00:32:14 +07:00
										 |  |  |   return 0; | 
					
						
							| 
									
										
										
										
											2021-01-27 16:37:31 +07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  | int board_uart_write(void const *buf, int len) { | 
					
						
							| 
									
										
										
										
											2023-02-22 15:14:56 +07:00
										 |  |  | #ifdef UART_DEV
 | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  |   char const *bufch = (char const *) buf; | 
					
						
							|  |  |  |   for ( int i = 0; i < len; i++ ) { | 
					
						
							| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  |     uart_putc(uart_inst, bufch[i]); | 
					
						
							| 
									
										
										
										
											2021-01-23 00:32:14 +07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2021-01-27 16:37:31 +07:00
										 |  |  |   return len; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2022-06-27 11:50:17 +07:00
										 |  |  |   (void) buf; (void) len; | 
					
						
							| 
									
										
										
										
											2021-01-23 00:32:14 +07:00
										 |  |  |   return 0; | 
					
						
							| 
									
										
										
										
											2021-01-27 16:37:31 +07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-01-19 19:52:07 -06:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-01-23 00:59:50 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 20:42:34 +07:00
										 |  |  | int board_getchar(void) { | 
					
						
							| 
									
										
										
										
											2022-11-21 16:28:54 +07:00
										 |  |  |   return getchar_timeout_us(0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-23 00:59:50 +07:00
										 |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // USB Interrupt Handler
 | 
					
						
							| 
									
										
										
										
											2022-12-04 13:58:47 +07:00
										 |  |  | // rp2040 implementation will install appropriate handler when initializing
 | 
					
						
							| 
									
										
										
										
											2021-01-23 00:59:50 +07:00
										 |  |  | // tinyusb. There is no need to forward IRQ from application
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // API: SPI transfer with MAX3421E, must be implemented by application
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | #if CFG_TUH_ENABLED && defined(CFG_TUH_MAX3421) && CFG_TUH_MAX3421
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void max3421_int_handler(uint gpio, uint32_t event_mask) { | 
					
						
							|  |  |  |   if (!(gpio == MAX3421_INTR_PIN && event_mask & GPIO_IRQ_EDGE_FALL)) return; | 
					
						
							|  |  |  |   tuh_int_handler(BOARD_TUH_RHPORT, true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void max3421_init(void) { | 
					
						
							|  |  |  |   // CS pin
 | 
					
						
							|  |  |  |   gpio_init(MAX3421_CS_PIN); | 
					
						
							|  |  |  |   gpio_set_dir(MAX3421_CS_PIN, GPIO_OUT); | 
					
						
							|  |  |  |   gpio_put(MAX3421_CS_PIN, true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Interrupt pin
 | 
					
						
							|  |  |  |   gpio_init(MAX3421_INTR_PIN); | 
					
						
							|  |  |  |   gpio_set_dir(MAX3421_INTR_PIN, GPIO_IN); | 
					
						
							|  |  |  |   gpio_pull_up(MAX3421_INTR_PIN); | 
					
						
							|  |  |  |   gpio_set_irq_enabled_with_callback(MAX3421_INTR_PIN, GPIO_IRQ_EDGE_FALL, true, max3421_int_handler); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // SPI init
 | 
					
						
							|  |  |  |   spi_init(MAX3421_SPI, 4*1000000ul); | 
					
						
							|  |  |  |   gpio_set_function(MAX3421_SCK_PIN, GPIO_FUNC_SPI); | 
					
						
							|  |  |  |   gpio_set_function(MAX3421_MOSI_PIN, GPIO_FUNC_SPI); | 
					
						
							|  |  |  |   gpio_set_function(MAX3421_MISO_PIN, GPIO_FUNC_SPI); | 
					
						
							| 
									
										
										
										
											2024-08-11 00:51:51 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef __GNUC__
 | 
					
						
							|  |  |  | #pragma GCC diagnostic push
 | 
					
						
							|  |  |  | #pragma GCC diagnostic ignored "-Wnull-dereference"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  |   spi_set_format(MAX3421_SPI, 8, SPI_CPOL_0, SPI_CPHA_0, SPI_MSB_FIRST); | 
					
						
							| 
									
										
										
										
											2024-08-11 00:51:51 +07:00
										 |  |  | #ifdef __GNUC__
 | 
					
						
							|  |  |  | #pragma GCC diagnostic pop
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //// API to enable/disable MAX3421 INTR pin interrupt
 | 
					
						
							|  |  |  | void tuh_max3421_int_api(uint8_t rhport, bool enabled) { | 
					
						
							|  |  |  |   (void) rhport; | 
					
						
							|  |  |  |   irq_set_enabled(IO_IRQ_BANK0, enabled); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // API to control MAX3421 SPI CS
 | 
					
						
							|  |  |  | void tuh_max3421_spi_cs_api(uint8_t rhport, bool active) { | 
					
						
							|  |  |  |   (void) rhport; | 
					
						
							|  |  |  |   gpio_put(MAX3421_CS_PIN, !active); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // API to transfer data with MAX3421 SPI
 | 
					
						
							|  |  |  | // Either tx_buf or rx_buf can be NULL, which means transfer is write or read only
 | 
					
						
							|  |  |  | bool tuh_max3421_spi_xfer_api(uint8_t rhport, uint8_t const* tx_buf, uint8_t* rx_buf, size_t xfer_bytes) { | 
					
						
							|  |  |  |   (void) rhport; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (tx_buf == NULL && rx_buf == NULL) { | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (tx_buf == NULL) { | 
					
						
							|  |  |  |     ret = spi_read_blocking(MAX3421_SPI, 0, rx_buf, xfer_bytes); | 
					
						
							|  |  |  |   }else if (rx_buf == NULL) { | 
					
						
							|  |  |  |     ret = spi_write_blocking(MAX3421_SPI, tx_buf, xfer_bytes); | 
					
						
							|  |  |  |   }else { | 
					
						
							|  |  |  |     ret = spi_write_read_blocking(spi0, tx_buf, rx_buf, xfer_bytes); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return ret == (int) xfer_bytes; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |