├── .cproject ├── .gitignore ├── .project ├── Inc ├── ByteBuffer.h ├── PubSubClient.h ├── SerialToTCPBridgeProtocol.h ├── crc.h ├── gpio.h ├── mxconstants.h ├── stm32f3xx_hal_conf.h ├── stm32f3xx_it.h └── usart.h ├── README.md ├── STM32SerialToTCPBridgeClient.elf.launch ├── STM32SerialToTCPBridgeClient.ioc └── Src ├── ByteBuffer.c ├── PubSubClient.c ├── SerialToTCPBridgeProtocol.c ├── crc.c ├── gpio.c ├── main.c ├── stm32f3xx_hal_msp.c ├── stm32f3xx_it.c └── usart.c /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/.project -------------------------------------------------------------------------------- /Inc/ByteBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Inc/ByteBuffer.h -------------------------------------------------------------------------------- /Inc/PubSubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Inc/PubSubClient.h -------------------------------------------------------------------------------- /Inc/SerialToTCPBridgeProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Inc/SerialToTCPBridgeProtocol.h -------------------------------------------------------------------------------- /Inc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Inc/crc.h -------------------------------------------------------------------------------- /Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Inc/gpio.h -------------------------------------------------------------------------------- /Inc/mxconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Inc/mxconstants.h -------------------------------------------------------------------------------- /Inc/stm32f3xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Inc/stm32f3xx_hal_conf.h -------------------------------------------------------------------------------- /Inc/stm32f3xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Inc/stm32f3xx_it.h -------------------------------------------------------------------------------- /Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Inc/usart.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/README.md -------------------------------------------------------------------------------- /STM32SerialToTCPBridgeClient.elf.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/STM32SerialToTCPBridgeClient.elf.launch -------------------------------------------------------------------------------- /STM32SerialToTCPBridgeClient.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/STM32SerialToTCPBridgeClient.ioc -------------------------------------------------------------------------------- /Src/ByteBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Src/ByteBuffer.c -------------------------------------------------------------------------------- /Src/PubSubClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Src/PubSubClient.c -------------------------------------------------------------------------------- /Src/SerialToTCPBridgeProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Src/SerialToTCPBridgeProtocol.c -------------------------------------------------------------------------------- /Src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Src/crc.c -------------------------------------------------------------------------------- /Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Src/gpio.c -------------------------------------------------------------------------------- /Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Src/main.c -------------------------------------------------------------------------------- /Src/stm32f3xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Src/stm32f3xx_hal_msp.c -------------------------------------------------------------------------------- /Src/stm32f3xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Src/stm32f3xx_it.c -------------------------------------------------------------------------------- /Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoanBrand/STM32SerialToTCPBridgeClient/HEAD/Src/usart.c --------------------------------------------------------------------------------