fork of reebn's uBitx v6 firmware
Go to file
Reed Nightingale 21736fcc1d Forgot to add version files to the project. Silly me. 2020-01-27 23:11:32 -08:00
PDQ_MinLib un-name unused variable 2020-01-26 10:38:35 -08:00
README.md Update README.md 2019-12-18 11:58:25 +05:30
encoder.cpp Explicit cast to prevent integer overflow 2020-01-26 10:47:57 -08:00
encoder.h First pass at a momentum function 2020-01-21 01:13:36 -08:00
glcdfont.c PDQ driver is working, but renders a little funny 2019-12-31 17:31:05 -08:00
keyer.cpp analogRead technically returns an int, but it only can be 0-1023, so practically it's an unsigned int. This matches types for the constants. Also removed cwAdcSTFrom, since the value will always be greater than 0 2020-01-26 10:40:03 -08:00
morse.cpp Match unsigned with unsigned 2020-01-26 10:39:01 -08:00
morse.h Let morseText play back at any desired rate, not just the default one 2020-01-19 20:15:01 -08:00
nano_font.cpp Save ~4% progmem by using a slightly smaller font 2020-01-01 20:49:35 -08:00
nano_font.h Save ~4% progmem by using a slightly smaller font 2020-01-01 20:49:35 -08:00
nano_gui.cpp Move string to PROGMEM, and remove unused return value 2020-01-26 10:42:20 -08:00
nano_gui.h Refactor local oscillator cal 2020-01-19 18:40:11 -08:00
settings.cpp Expand range of allowed sane frequencies to anything the tuner driver will actually tune 2020-01-14 22:07:24 -08:00
settings.h Fix settings - some variables weren't being read quite right 2020-01-03 23:43:06 -08:00
setup.cpp A number of explicit casts, initializations, and type adjustments to avoid warnings 2020-01-26 10:40:59 -08:00
setup.h Refactor BFO settings menu 2020-01-19 19:24:26 -08:00
ubitx.h increase buffer b size to avoid heap smashing 2020-01-19 18:41:36 -08:00
ubitx_cat.cpp Remove unused static 2020-01-26 10:42:37 -08:00
ubitx_si5351.cpp Remove unused variable 2020-01-26 10:43:11 -08:00
ubitx_ui.cpp Add version string to bottom right corner 2020-01-27 22:36:01 -08:00
ubitx_v6.3.1_code.ino Minor whitespace adjustment, and remove unused variables 2020-01-26 10:22:20 -08:00
version.cpp Forgot to add version files to the project. Silly me. 2020-01-27 23:11:32 -08:00
version.h Forgot to add version files to the project. Silly me. 2020-01-27 23:11:32 -08:00

README.md

ubitxv6

uBitx v6.3.1 Arduino sketch IMPORTANT: It will compile only if you place this in the Arduino's own sketch directory! This is because of the restricted places that the Arduino searches for it's include files (the headers).

  • This is refactored to remove dependencies on any library except the standard Arduino libraries of SPI, I2C, EEPROM, etc.
  • This works with ILI9341 display controller. The pins used by the TFT display are the same as that of the 16x2 LCD display of the previous versions.
  • As the files are now split into .cpp files, the nano gui, morse reader, etc. can be reused in other projects as well

This is released under GPL v3 license.