| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | /* 
 | 
					
						
							|  |  |  |  * The MIT License (MIT) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2020, 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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of the TinyUSB stack. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-09 00:06:18 +07:00
										 |  |  | #include "../board.h"
 | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | #include "driver/gpio.h"
 | 
					
						
							| 
									
										
										
										
											2020-05-29 13:06:33 +07:00
										 |  |  | #include "driver/periph_ctrl.h"
 | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | #include "hal/usb_hal.h"
 | 
					
						
							| 
									
										
										
										
											2020-05-29 13:06:33 +07:00
										 |  |  | #include "soc/usb_periph.h"
 | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-09 00:06:18 +07:00
										 |  |  | #include "driver/rmt.h"
 | 
					
						
							|  |  |  | #include "led_strip/include/led_strip.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // MACRO TYPEDEF CONSTANT ENUM DECLARATION
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-09 00:06:18 +07:00
										 |  |  | // Note: On the production version (v1.2) WS2812 is connected to GPIO 18,
 | 
					
						
							|  |  |  | // however earlier revision v1.1 WS2812 is connected to GPIO 17
 | 
					
						
							| 
									
										
										
										
											2020-06-29 16:52:08 +07:00
										 |  |  | //#define LED_PIN               17 // v1.1
 | 
					
						
							|  |  |  | #define LED_PIN               18 // v1.2 and later
 | 
					
						
							| 
									
										
										
										
											2020-04-07 13:42:48 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define BUTTON_PIN            0
 | 
					
						
							|  |  |  | #define BUTTON_STATE_ACTIVE   0
 | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-09 00:06:18 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static led_strip_t *strip; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | // Initialize on-board peripherals : led, button, uart and USB
 | 
					
						
							|  |  |  | void board_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-09 00:06:18 +07:00
										 |  |  |   // WS2812 Neopixel driver with RMT peripheral
 | 
					
						
							|  |  |  |   rmt_config_t config = RMT_DEFAULT_CONFIG_TX(LED_PIN, RMT_CHANNEL_0); | 
					
						
							|  |  |  |   config.clk_div = 2; // set counter clock to 40MHz
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   rmt_config(&config); | 
					
						
							|  |  |  |   rmt_driver_install(config.channel, 0, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   led_strip_config_t strip_config = LED_STRIP_DEFAULT_CONFIG(1, (led_strip_dev_t) config.channel); | 
					
						
							|  |  |  |   strip = led_strip_new_rmt_ws2812(&strip_config); | 
					
						
							|  |  |  |   strip->clear(strip, 100); // off led
 | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 13:42:48 +07:00
										 |  |  |   // Button
 | 
					
						
							|  |  |  |   gpio_pad_select_gpio(BUTTON_PIN); | 
					
						
							|  |  |  |   gpio_set_direction(BUTTON_PIN, GPIO_MODE_INPUT); | 
					
						
							|  |  |  |   gpio_set_pull_mode(BUTTON_PIN, BUTTON_STATE_ACTIVE ? GPIO_PULLDOWN_ONLY : GPIO_PULLUP_ONLY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  |   // USB Controller Hal init
 | 
					
						
							| 
									
										
										
										
											2020-05-29 13:06:33 +07:00
										 |  |  |   periph_module_reset(PERIPH_USB_MODULE); | 
					
						
							|  |  |  |   periph_module_enable(PERIPH_USB_MODULE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  |   usb_hal_context_t hal = { | 
					
						
							|  |  |  |     .use_external_phy = false // use built-in PHY
 | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  |   usb_hal_init(&hal); | 
					
						
							| 
									
										
										
										
											2020-05-29 13:06:33 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Pin drive strength
 | 
					
						
							|  |  |  |   gpio_set_drive_capability(USBPHY_DM_NUM, GPIO_DRIVE_CAP_3); | 
					
						
							|  |  |  |   gpio_set_drive_capability(USBPHY_DP_NUM, GPIO_DRIVE_CAP_3); | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Turn LED on or off
 | 
					
						
							|  |  |  | void board_led_write(bool state) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-09 00:06:18 +07:00
										 |  |  |   strip->set_pixel(strip, 0, (state ? 0x88 : 0x00), 0x00, 0x00); | 
					
						
							|  |  |  |   strip->refresh(strip, 100); | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Get the current state of button
 | 
					
						
							|  |  |  | // a '1' means active (pressed), a '0' means inactive.
 | 
					
						
							|  |  |  | uint32_t board_button_read(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-07 13:42:48 +07:00
										 |  |  |   return gpio_get_level(BUTTON_PIN) == BUTTON_STATE_ACTIVE; | 
					
						
							| 
									
										
										
										
											2020-04-01 20:24:46 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Get characters from UART
 | 
					
						
							|  |  |  | int board_uart_read(uint8_t* buf, int len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   (void) buf; (void) len; | 
					
						
							|  |  |  |   return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Send characters to UART
 | 
					
						
							|  |  |  | int board_uart_write(void const * buf, int len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   (void) buf; (void) len; | 
					
						
							|  |  |  |   return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |