# stm32_upload_tools **Repository Path**: jerry-yip/stm32_upload_tools ## Basic Information - **Project Name**: stm32_upload_tools - **Description**: fork from https://github.com/rogerclarkmelbourne/Arduino_STM32 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-10-25 - **Last Updated**: 2021-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # stm32_upload_tools fork from https://github.com/rogerclarkmelbourne/Arduino_STM32 ## compile on windows 1. download mingw 2. cd src/parsers 3. make CC=gcc AR=ar 4. cd ../ 5. make CC=gcc AR=ar ## compile on mac 1. edit `src/serial_posix.c` add 2 line before `h->newtio.c_cc[VMIN] = 0;` ``` if(port_parity != 0) h->newtio.c_iflag |= INPCK; ``` ![](mac_stmflashtool_edit.png) 2. make