ch32v003fun CH32V003F4P6 シリアル通信

はじめに シリアル通信を試しました 注意点 SWIOだけではシリアル通信できません。 WCH-LinkEのRXとCH32V003F4P6のUTX(pin2,PD5)を接続する必要があります。 接続 3.3V GND SWIO(PD1) TX(PD5)の4本です。 プログラム サンプルがほぼそのままで動作しました。楽〜 C:\Users\USERNAME\Downloads\ch32v003fun\examples\uart_tx_dma\uart_tx_dma.c ch32v003funをWindowsに構築しCH32V003F4P6でLチカ | atooshi-noteでch32v003funをダウンロードした場所と同じです。 接続してポートを認識しており(COM7でした)、teratermで通信を確認しました。 /* * This example uses DMA for the UART to transfer the "Hello World!\r\n" string * once per second. Connect a UART Rx pin to D5, flash the example, setup your * uart for 115200n1 and the messages should appear シリアル通信のチェック */ #include "ch32v003fun.h" // Set UART baud rate here #define UART_BR 115200 // LED on D6 (nanoCH32V003 board) // #define LED_PIN 6 #define LED_PIN 4 // ch32v003f4p6のdevelopmetboard // DMA transfer completion interrupt. It will fire when the DMA transfer is // complete. We use it just to blink the LED __attribute__((interrupt)) __attribute__((section(".srodata"))) void DMA1_Channel4_IRQHandler(void) { // Clear flag DMA1->INTFCR |= DMA_CTCIF4; // Blink LED GPIOD->OUTDR ^= 1<<LED_PIN; } static void led_setup(void) { RCC->APB2PCENR = RCC_APB2Periph_GPIOD; GPIOD->CFGLR = ((GPIO_CNF_IN_PUPD)<<(4*1)) | // Keep SWIO enabled. (GPIO_Speed_2MHz | GPIO_CNF_OUT_PP)<<(4*LED_PIN); // LED ON GPIOD->BSHR = 1<<LED_PIN; } static void uart_setup(void) { // Enable UART and GPIOD RCC->APB2PCENR |= RCC_APB2Periph_GPIOD | RCC_APB2Periph_USART1; // Push-Pull, 10MHz Output on D5, with AutoFunction GPIOD->CFGLR = (GPIOD->CFGLR & ~(0xF<<(4*5))) | ((GPIO_Speed_10MHz | GPIO_CNF_OUT_PP_AF)<<(4*5)); // Setup UART for Tx 8n1 USART1->CTLR1 = USART_WordLength_8b | USART_Parity_No | USART_Mode_Tx; USART1->CTLR2 = USART_StopBits_1; // Enable Tx DMA event USART1->CTLR3 = USART_DMAReq_Tx; // Set baud rate and enable UART USART1->BRR = ((FUNCONF_SYSTEM_CORE_CLOCK) + (UART_BR)/2) / (UART_BR); USART1->CTLR1 |= CTLR1_UE_Set; } static void dma_uart_setup(void) { // Enable DMA peripheral RCC->AHBPCENR = RCC_AHBPeriph_SRAM | RCC_AHBPeriph_DMA1; // Disable channel just in case there is a transfer in progress DMA1_Channel4->CFGR &= ~DMA_CFGR1_EN; // USART1 TX uses DMA channel 4 DMA1_Channel4->PADDR = (uint32_t)&USART1->DATAR; // MEM2MEM: 0 (memory to peripheral) // PL: 0 (low priority since UART is a relatively slow peripheral) // MSIZE/PSIZE: 0 (8-bit) // MINC: 1 (increase memory address) // CIRC: 0 (one shot) // DIR: 1 (read from memory) // TEIE: 0 (no tx error interrupt) // HTIE: 0 (no half tx interrupt) // TCIE: 1 (transmission complete interrupt enable) // EN: 0 (do not enable DMA yet) DMA1_Channel4->CFGR = DMA_CFGR1_MINC | DMA_CFGR1_DIR | DMA_CFGR1_TCIE; // Enable channel 4 interrupts NVIC_EnableIRQ(DMA1_Channel4_IRQn); } static void dma_uart_tx(const void *data, uint32_t len) { // Disable DMA channel (just in case a transfer is pending) DMA1_Channel4->CFGR &= ~DMA_CFGR1_EN; // Set transfer length and source address DMA1_Channel4->CNTR = len; DMA1_Channel4->MADDR = (uint32_t)data; // Enable DMA channel to start the transfer DMA1_Channel4->CFGR |= DMA_CFGR1_EN; } int main(void) { static const char message[] = "Hello World!!!\r\n"; SystemInit(); led_setup(); uart_setup(); dma_uart_setup(); while (1) { dma_uart_tx(message, sizeof(message) - 1); Delay_Ms(1000); } } 参考 CH32V003をArduinoで使う: DJ HIGO オフィシャルブログ ...

2025/01/16 · Last updated on 2025/03/14 · 2 min · 421 words

ch32v003funをWindowsに構築しCH32V003F4P6でLチカ

はじめに ch32v003funの環境をWindowsに構築したメモです。 Installation · cnlohr/ch32fun Wikiの通りにやれば良いのですが、自分のまとめをしました。 環境 Windows10 CH32V003F4P6 Development board 詳細はアリエクで買ったCH32V003F4P6 Development board | atooshi-noteに記載 WCH-LinkE version 2.15 構築 githubからch32v003funを好きなフォルダにダウンロードします。 cnlohr/ch32fun: Open source minimal stack for the ch32 line of WCH processors, including the ch32v003, a 10¢ 48 MHz RISC-V Microcontroller - as well as many other chips within the ch32v/x line. 私は、C:\Users\USERNAME\Downloads\ch32v003funにgit cloneしました。 gccインストール Prebuilt GNU toolchain for RISC-Vから、risc-v-gcc10.1.0.exe (22 MB) をダウンロード、イントールします。 インストール先:C:\SysGCC The minichlink.exe file is already ready to go in the minichlink folder. ...

2025/01/06 · Last updated on 2025/03/14 · 3 min · 445 words

アリエクで買ったCH32V003F4P6 Development board

はじめに アリエクで買ったCH32V003F4P6 Development boardのメモです。 適当に買ってあったのですが、使う時に回路図がわからず調べました。 WCH-LinkEとDevelopment boardのセットで1000円ほどで買いました。以下です。 https://ja.aliexpress.com/item/1005005834050641.html Development board単体なら300円くらいです。 商品ページには回路図が載っていないのですが、一番下にドキュメントの記載がありました。 ドキュメント start [ICBbuy] 回路図 回路図は以下です。 developmentboard:ch32v003 [ICBbuy] LEDが2つ載ってますが、一つは電源投入で点灯するLED(PWR)です。 もう一つはLチカ確認用(D1)なのですが、PD4に接続されています。 以上:)

2025/01/06 · Last updated on 2025/03/14 · 1 min · 21 words