├── .gitignore ├── LICENSE ├── README.md ├── SoftModem.cpp ├── SoftModem.h ├── examples └── SerialBridge │ └── SerialBridge.ino ├── extras ├── schematic.png └── softmodem.jpg ├── keywords.txt └── library.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/README.md -------------------------------------------------------------------------------- /SoftModem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/SoftModem.cpp -------------------------------------------------------------------------------- /SoftModem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/SoftModem.h -------------------------------------------------------------------------------- /examples/SerialBridge/SerialBridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/examples/SerialBridge/SerialBridge.ino -------------------------------------------------------------------------------- /extras/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/extras/schematic.png -------------------------------------------------------------------------------- /extras/softmodem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/extras/softmodem.jpg -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arms22/SoftModem/HEAD/library.properties --------------------------------------------------------------------------------