Main page
Recent changes
Band decoder MK2
B
I
U
S
link
image
code
list
Show page
Syntax
!!Multiple output Standart operation is each band has one output. If enable line{{#define MULTI_OUTPUT_BY_BCD}} in firmware source, each band can have up to four outputs, selectable by BCD inpit pins. These conditions need to be set * YAESU_BCD input must be disable * BCD output will be disble * select (grounded) one of BCD input for select '''Otput set in matrix table''' * Each bcd input represent by bit in this table ** 0x01 = B00000001 = bit 1 ** 0x02 = B00000010 = bit 2 ** 0x04 = B00000100 = bit 3 ** 0x08 = B00001000 = bit 4 * For example record {{Band 1 --> { 0x01, 0x02, 0x04, 0, 0x08, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },}}is the same as record {{Band 1 --> { B00000001, B00000010, B00000100, 0, B00001000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },}} * 0x0F = this output enable for any BCD input (enable all bit) '''LCD antenna name''' set in array for each bcd input separately {{const char* ANTname[17][4] = { {"Out of band", "Out of band", "Out of band", "Out of band"}, // Band 0 (no data) {"Dipole", "BCD-2", "BCD-3", "BCD-4"}, // Band 1 {"Vertical", "BCD-2", "BCD-3", "BCD-4"}, // Band 2 {"3el Yagi", "BCD-2", "BCD-3", "BCD-4"}, // Band 3 ...}}
Password
Summary of changes