├── LICENSE ├── README.md └── sources └── .gitempty /LICENSE: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2004 Sam Hocevar 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # VN1610 firmware for STM32F4 based boards 2 | 3 | Target hardware: 4 | * Any STM32F407/405 based boards with 8MHz oscillator 5 | 6 | Pinout: 7 | |PIN/PINS|DESCRIPTION| 8 | | ------ | ------ | 9 | |PC10|STATUS LED| 10 | |PA2/PA3|TX/RX CAN1 LED| 11 | |PC6/PC7|TX/RX CAN2 LED| 12 | |PB8/PB9|CAN1 RX/TX| 13 | |PB5/PB6|CAN2 RX/TX| 14 | |PB14/PB15|USB DM/DP| 15 | 16 | Features: 17 | - Two channel USB<->CAN adapter 18 | - Supports by XL-Driver-Library 19 | - Supports by BusMaster 20 | 21 | Limits: 22 | - For education purpose only 23 | - No license inside ( do not ask about it ) 24 | - No FDCAN due hardware limitation 25 | - Some protocol specific messages not implemented yet 26 | - Be sure to use **PB14/PB15** pins for USB 27 | 28 | Download: 29 | - [Release page](https://github.com/moonglow/vector_can/releases/latest) 30 | 31 | 32 | License 33 | ---- 34 | 35 | WTFPL 36 | -------------------------------------------------------------------------------- /sources/.gitempty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonglow/vector_can/e6cab673537cc4c6ff155a4306c9aa7ef85bfd05/sources/.gitempty --------------------------------------------------------------------------------