master
David Fainitski 2019-08-19 10:20:04 -07:00 zatwierdzone przez GitHub
rodzic 44eedfc0f5
commit d7f04a3897
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 0 dodań i 782 usunięć

Wyświetl plik

@ -1,782 +0,0 @@
// ATU-100 project
// David Fainitski
// 2016
#include "oled_control.h"
#include "pic_init.h"
#include "main.h"
// Variables
int SWR_fixed = 0, SWR_fixed_old = 0, Power, work_int;
char work_char, work_str[7], work_str_2[7];
float Forward;
int Power_old = 10000;
int SWR_old = 10000;
char m_nibble = 0, l_nibble = 0;
char type, Soft_tune = 0, Auto = 0, Track = 0;
char bypas = 0, cap_mem = 0, ind_mem = 0, SW_mem = 0, Auto_mem = 0;
int Auto_delta;
char Restart = 0, Test = 0, lcd_prep_short = 0;
char L = 1, but = 0;
int Cap1, Cap2, Cap3, Cap4, Cap5;
int Ind1, Ind2, Ind3, Ind4, Ind5;
char Dysp_delay = 0;
int dysp_cnt = 0;
float dysp_cnt_mult = 2.3;
char Loss_mode = 0, Fid_loss;
/*
void interrupt () {
}
*/
void main() {
if(RCON.B3==0) Restart = 1;
pic_init();
//
Delay_ms (100);
asm CLRWDT;
cells_init();
Soft_I2C_Init();
if(type==0) { // 2-colors led reset
LATB.B6 = 1;
LATB.B7 = 1;
}
Low = 0;
Mid = 0;
High = 0;
dysp_cnt = Dysp_delay * dysp_cnt_mult;
//
Delay_ms(200);
asm CLRWDT;
if(PORTB.B4==0 & PORTB.B5==0) { // Test mode
Test = 1;
Auto = 0;
}
led_init();
if(PORTB.B4==0 & PORTB.B5==0 & PORTB.B0==0) { // Fast Test mode (loop)
if(type==1) led_wr_str (0, 3, "FAST TEST", 9); // 1602
else if(type!=0) led_wr_str (0, 12, "FAST TEST", 9); // 128*64 | 128*32
set_cap(255);
set_ind(255);
set_sw(1);
asm CLRWDT;
while(1) {Delay_ms(500);asm CLRWDT;}
}
asm CLRWDT;
//
if(Test==0) {
cap = EEPROM_Read(255);
ind = EEPROM_Read(254);
SW = EEPROM_Read(253);
swr_a = EEPROM_Read(252) * 256;
swr_a += EEPROM_Read(251);
set_ind(ind);
set_cap(cap);
set_sw(SW);
if(Restart==1 ) lcd_prep_short = 1;
lcd_prep();
}
else Test_init();
lcd_ind();
//*******************************
while(1) {
asm CLRWDT;
lcd_pwr();
//
if(Test==0) button_proc();
else button_proc_test();
//
if(dysp_cnt!=0) dysp_cnt --;
else if(Test==0 & Dysp_delay!=0) dysp_off();
// next While code
}
}
//***************** Routines *****************
void button_proc_test(void) {
if(Button(&PORTB, 0, 50, 0)){ // Tune btn
Delay_ms(250);
asm CLRWDT;
if(PORTB.B0==1) { // short press button
if(SW==0) SW = 1; else SW = 0;
set_sw(SW);
lcd_ind();
}
else { // long press button
if(L==1) L = 0; else L = 1;
if(L==1) {
if(type==4 |type==5) // 128*64 OLED
led_wr_str (0, 16+12*8, "l", 1);
else if(type!=0) // 1602 LCD & 128*32 OLED
led_wr_str (0, 8, "l", 1);
}
else {
if(type==4 |type==5) // 128*64 OLED
led_wr_str (0, 16+12*8, "c", 1);
else if(type!=0) // 1602 LCD & 128*32 OLED
led_wr_str (0, 8, "c", 1);
}
}
while(Button(&PORTB, 0, 50, 0)) {lcd_pwr(); asm CLRWDT; }
} // END Tune btn
//
if(Button(&PORTB, 5, 50, 0)){ // BYP button
asm CLRWDT;
while(PORTB.B5==0) {
if(L & ind<31) {
ind ++;
set_ind(ind);
}
else if(!L & cap<31) {
cap ++;
set_cap(cap);
}
lcd_ind();
lcd_pwr();
Delay_ms(30);
asm CLRWDT;
}
} // end of BYP button
//
if(Button(&PORTB, 4, 50, 0) & Bypas==0){ // Auto button
asm CLRWDT;
while(PORTB.B4==0) {
if(L & ind>0) {
ind --;
set_ind(ind);
}
else if(!L & cap>0) {
cap --;
set_cap(cap);
}
lcd_ind();
lcd_pwr();
Delay_ms(30);
asm CLRWDT;
}
}
return;
}
void button_proc(void) {
if(Button(&PORTB, 0, 50, 0) | Soft_tune){
dysp_on();
dysp_cnt = Dysp_delay * dysp_cnt_mult;
Delay_ms(250);
asm CLRWDT;
if(Soft_tune == 0 & PORTB.B0==1) { // short press button
show_reset();
bypas =0;
}
else { // long press button
p_Tx = 1; //
n_Tx = 0; // TX request
asm CLRWDT;
Delay_ms(250); //
asm CLRWDT;
btn_push();
bypas = 0;
while(Button(&PORTB, 0, 50, 0)) {lcd_pwr(); asm CLRWDT; }
Soft_tune = 0;
}
//if(Loss_ind==0) lcd_ind();
}
//
if(Button(&PORTB, 5, 50, 0)){ // BYP button
dysp_on();
dysp_cnt = Dysp_delay * dysp_cnt_mult;
asm CLRWDT;
if(bypas == 0) {
bypas = 1;
cap_mem = cap;
ind_mem = ind;
SW_mem = SW;
cap = 0;
ind = 0;
SW = 1;
set_ind(ind);
set_cap(cap);
set_SW(SW);
if(Loss_mode==0) lcd_ind();
Auto_mem = Auto;
Auto = 0;
}
else {
bypas = 0;
cap = cap_mem;
ind = ind_mem;
SW = SW_mem;
set_cap(cap);
set_ind(ind);
set_SW(SW);
if(Loss_mode==0) lcd_ind();
Auto = Auto_mem;
}
if(type==4 | type==5) { // 128*64 OLED
if(Auto & !Bypas) led_wr_str (0, 16+8*12, ".", 1);
else if(!Auto & Bypas) led_wr_str (0, 16+8*12, "_", 1);
else led_wr_str (0, 16+8*12, " ", 1);
}
else if(type!=0) { // 1602 LCD or 128*32 OLED
if(Auto & !Bypas) led_wr_str (0, 8, ".", 1);
else if(!Auto & Bypas) led_wr_str (0, 8, "_", 1);
else led_wr_str (0, 8, " ", 1);
}
while(Button(&PORTB, 5, 50, 0)) {lcd_pwr(); asm CLRWDT; }
}
//
if(Button(&PORTB, 4, 50, 0) & Bypas==0){ // Auto button
dysp_on();
dysp_cnt = Dysp_delay * dysp_cnt_mult;
asm CLRWDT;
if(Auto == 0) Auto = 1;
else Auto = 0;
EEPROM_Write(2, Auto);
if(type==4 | type==5) { // 128*64 OLED
if(Auto & !Bypas) led_wr_str (0, 16+8*12, ".", 1);
else if(!Auto & Bypas) led_wr_str (0, 16+8*12, "_", 1);
else led_wr_str (0, 16+8*12, " ", 1);
}
else if(type!=0) { // 1602 LCD or 128*32 OLED
if(Auto & !Bypas) led_wr_str (0, 8, ".", 1);
else if(!Auto & Bypas) led_wr_str (0, 8, "_", 1);
else led_wr_str (0, 8, " ", 1);
}
while(Button(&PORTB, 4, 50, 0)) {lcd_pwr(); asm CLRWDT; }
}
return;
}
void show_reset() {
asm CLRWDT;
atu_reset();
SW = 1;
set_sw(SW);
EEPROM_Write(255, 0);
EEPROM_Write(254, 0);
EEPROM_Write(253, 1);
EEPROM_Write(252, 0);
EEPROM_Write(251, 0);
lcd_ind();
Loss_mode = 0;
p_Tx = 0;
n_Tx = 1;
SWR = 0;
PWR = 0;
SWR_fixed_old = 0;
if(type==4 | type==5) { // 128*64 OLED
led_wr_str (2, 16, "RESET ", 8);
asm CLRWDT;
delay_ms(600);
led_wr_str (2, 16, "SWR=0.00", 8);
asm CLRWDT;
}
else if(type!=0) {// 1602 LCD & 128*32 OLED
led_wr_str (1, 0, "RESET ", 8);
asm CLRWDT;
delay_ms(600);
led_wr_str (1, 0, "SWR=0.00", 8);
asm CLRWDT;
}
else {
LATB.B6 = 1;
LATB.B7 = 1;
}
Low = 0;
Mid = 0;
High = 0;
SWR_old = 10000;
Power_old = 10000;
lcd_pwr();
return;
}
void btn_push() {
asm CLRWDT;
if(type==4 | type==5) { // 128*64 OLED
led_wr_str (2, 16+12*4, "TUNE", 4);
}
else if(type!=0) { // 1602 LCD & 128*32 OLED
led_wr_str (1, 4, "TUNE", 4);
}
else {
LATB.B6 = 1;
LATB.B7 = 1;
}
Low = 0;
Mid = 0;
High = 0;
tune();
if(type==0) { // real-time 2-colors led work
if(swr<=150) { LATB.B6 = 0; LATB.B7 = 1; } // Green
else if(swr<=250) {PORTB.B6 = 0; PORTB.B7 = 0;} // Orange
else { PORTB.B6 = 1; PORTB.B7 = 0; } // Red
}
else if(Loss_mode==0 | Loss_ind==0) lcd_ind();
if(SWR<=150) Low = 1;
else if(SWR<=250) Mid = 1;
else High = 1;
EEPROM_Write(255, cap);
EEPROM_Write(254, ind);
EEPROM_Write(253, SW);
EEPROM_Write(252, swr_a/256);
EEPROM_Write(251, swr_a%256);
SWR_old = 10000;
Power_old = 10000;
lcd_pwr();
SWR_fixed_old = SWR;
p_Tx = 0;
n_Tx = 1;
asm CLRWDT;
return;
}
void lcd_prep() {
asm CLRWDT;
if(type==4 |type==5){ // 128*64 OLED
if(lcd_prep_short==0) {
led_wr_str (0, 22, "ATU-100", 7);
led_wr_str (2, 4, "mini board", 10);
led_wr_str (4, 16, "by N7DDC", 8);
led_wr_str (6, 4, "FW ver 3.0", 10);
asm CLRWDT;
Delay_ms(600);
asm CLRWDT;
Delay_ms(500);
asm CLRWDT;
led_wr_str (0, 16, " ", 8);
led_wr_str (2, 4, " ", 10);
led_wr_str (4, 16, " ", 8);
led_wr_str (6, 4, " ", 10);
}
Delay_ms(150);
led_wr_str (0, 16, "PWR=0.0W", 8);
led_wr_str (2, 16, "SWR=0.00", 8);
if(Auto) led_wr_str (0, 16+8*12, ".", 1);
}
else if(type!=0) { // 1602 LCD & 128*32 OLED
if(lcd_prep_short==0) {
led_wr_str (0, 4, "ATU-100", 7);
led_wr_str (1, 3, "mini board", 10);
asm CLRWDT;
Delay_ms(700);
asm CLRWDT;
Delay_ms(500);
asm CLRWDT;
led_wr_str (0, 4, "by N7DDC", 8);
led_wr_str (1, 3, "FW ver 3.0", 10);
asm CLRWDT;
Delay_ms(600);
asm CLRWDT;
Delay_ms(500);
asm CLRWDT;
led_wr_str (0, 4, " ", 8);
led_wr_str (1, 3, " ", 10);
}
Delay_ms(150);
led_wr_str (0, 0, "PWR=0.0W", 8);
led_wr_str (1, 0, "SWR=0.00", 8);
if(Auto) led_wr_str (0, 8, ".", 1);
}
asm CLRWDT;
lcd_ind();
return;
}
void lcd_swr(int swr) {
asm CLRWDT;
if(swr!=SWR_old) {
SWR_old = swr;
if(swr==1) { // Low power
if(type==4 | type==5) led_wr_str (2, 16+4*12, "0.00", 4); // 128*64 OLED
else if(type!=0) led_wr_str (1, 4, "0.00", 4); // 1602 & 128*32 OLED
else if(type==0) { // real-time 2-colors led work
LATB.B6 = 1;
LATB.B7 = 1;
}
Low = 0;
Mid = 0;
High = 0;
SWR_old = 0;
}
else {
SWR_old = swr;
IntToStr(swr, work_str);
work_str_2[0] = work_str[3];
work_str_2[1] = '.';
work_str_2[2] = work_str[4];
work_str_2[3] = work_str[5];
if(type==4 | type==5) led_wr_str (2, 16+4*12, work_str_2, 4); // 128*64 OLED
else if(type!=0) led_wr_str (1, 4, work_str_2, 4); // 1602 & 128*32
else if(type==0) { // real-time 2-colors led work
if(swr<=150) { LATB.B6 = 0; LATB.B7 = 1; } // Green
else if(swr<=250) {PORTB.B6 = 0; PORTB.B7 = 0;} // Orange
else { PORTB.B6 = 1; PORTB.B7 = 0; } // Red
}
if(SWR<=150) {Low = 1; Mid = 0; High = 0;}
else if(SWR<=250) {Low = 0; Mid = 1; High = 0;}
else {Low = 0; Mid = 0; High = 1; }
}
}
asm CLRWDT;
return;
}
void button_delay() {
if((Button(&PORTB, 0, 25, 0)) | (Button(&PORTB, 1, 25, 0)) | (Button(&PORTB, 2, 25, 0))) {
but = 1;
}
return;
}
void show_pwr(int Power, int SWR) {
float a, b;
int p_ant;
float eff;
asm CLRWDT;
//
if(Test==0 & Loss_ind==1 & SWR>=100) {
if(Loss_mode==0) { // prepare
if(type==4 |type==5){ // 128*64 OLED
led_wr_str(4, 16, "ANT=0.0W", 8);
led_wr_str(6, 16, "EFF= 0%", 8);
}
else if(type==2 | type==3) { // 128*32 OLED
led_wr_str (0, 9, "ANT=0.0W", 8);
led_wr_str (1, 9, "EFF= 0%", 8);
}
else if(type==1) { // 1602 LCD
led_wr_str (0, 9, "AN=0.0W", 7);
led_wr_str (1, 9, "EFF= 0%", 7);
}
}
Loss_mode = 1;
}
else {
if(Loss_mode==1) lcd_ind();
Loss_mode = 0;
}
asm CLRWDT;
if(Power != Power_old) {
Power_old = Power;
//
if(1) {
if(Power >= 100) { // > 10 W
Power += 5; // rounding to 1 W
IntToStr(Power, work_str);
work_str_2[0] = work_str[2];
work_str_2[1] = work_str[3];
work_str_2[2] = work_str[4];
work_str_2[3] = 'W';
}
else {
IntToStr(Power, work_str);
if(work_str[4] != ' ') work_str_2[0] = work_str[4]; else work_str_2[0] = '0';
work_str_2[1] = '.';
if(work_str[5] != ' ') work_str_2[2] = work_str[5]; else work_str_2[2] = '0';
work_str_2[3] = 'W';
}
}
if(type==4 | type==5) led_wr_str (0, 16+4*12, work_str_2, 4); // 128*64 OLED
else if(type!=0) led_wr_str (0, 4, work_str_2, 4); // 1602 & 128*32
//
// Loss indication
if(Loss_mode==1) {
if(ind==0 & cap==0) swr_a = SWR;
a = 1.0 / ((swr_a/100.0 + 100.0/swr_a) * Fid_loss/10.0 * 0.115 + 1.0); // Fider loss
b = 4.0 / (2.0 + SWR/100.0 + 100.0/SWR); // SWR loss
if(a>=1.0) a = 1.0;
if(b>=1.0) b = 1.0;
p_ant = Power * a * b;
eff = a * b * 100;
if(eff>=100) eff = 99;
//
if(1) {
if(p_ant >= 100) { // > 10 W
p_ant += 5; // rounding to 1 W
IntToStr(p_ant, work_str);
work_str_2[0] = work_str[2];
work_str_2[1] = work_str[3];
work_str_2[2] = work_str[4];
work_str_2[3] = 'W';
}
else {
IntToStr(p_ant, work_str);
if(work_str[4] != ' ') work_str_2[0] = work_str[4]; else work_str_2[0] = '0';
work_str_2[1] = '.';
if(work_str[5] != ' ') work_str_2[2] = work_str[5]; else work_str_2[2] = '0';
work_str_2[3] = 'W';
}
}
if(type==4 | type==5) led_wr_str (4, 16+4*12, work_str_2, 4); // 128*64 OLED
else if(type==2 | type==3) led_wr_str (0, 13, work_str_2, 4); // 128*32
else if(type==1) led_wr_str (0, 12, work_str_2, 4); // 1602
//
IntToStr(eff, work_str);
work_str_2[0] = work_str[4];
work_str_2[1] = work_str[5];
if(type==4 | type==5) led_wr_str(6, 16+5*12, work_str_2, 2);
else if(type==2 | type==3) led_wr_str(1, 14, work_str_2, 2);
else if(type==1) led_wr_str(1, 13, work_str_2, 2);
}
}
asm CLRWDT;
return;
}
void lcd_pwr() {
int p = 0;
char peak_cnt;
int delta = Auto_delta - 100;
char cnt;
int SWR_fixed = 1;
PWR = 0;
asm CLRWDT;
// peak detector
cnt = 120;
for(peak_cnt = 0; peak_cnt < cnt; peak_cnt++){
if(PORTB.B4==0 | PORTB.B5==0 | PORTB.B0==0) {button_delay(); if(but==1) {but = 0; return;} }
get_pwr();
if(PWR>p) {p = PWR; SWR_fixed = SWR;}
Delay_ms(3);
}
asm CLRWDT;
Power = p;
lcd_swr(SWR_fixed);
if(SWR_fixed>=100) {
dysp_on(); // dysplay ON
dysp_cnt = Dysp_delay * dysp_cnt_mult;
}
//
if(Auto & SWR_fixed>=Auto_delta & ((SWR_fixed>SWR_fixed_old & (SWR_fixed-SWR_fixed_old)>delta) | (SWR_fixed<SWR_fixed_old & (SWR_fixed_old-SWR_fixed)>delta) | SWR_fixed_old==999))
Soft_tune = 1;
//
if(PORTB.B4==0 | PORTB.B5==0 | PORTB.B0==0) {button_delay(); if(but==1) {but = 0; return;} } // Fast return if button pressed
show_pwr(Power, SWR_fixed);
//
if(PORTB.B4==0 | PORTB.B5==0 | PORTB.B0==0) {button_delay(); if(but==1) {but = 0; return;} }
asm CLRWDT;
if(Overload==1) {
if(type==4 | type==5) { // 128*64 OLED
led_wr_str (2, 16, " ", 8);
delay_ms(100);
asm CLRWDT;
led_wr_str (2, 16, "OVERLOAD", 8);
delay_ms(500);
asm CLRWDT;
led_wr_str (2, 16, " ", 8);
delay_ms(300);
asm CLRWDT;
led_wr_str (2, 16, "OVERLOAD", 8);
delay_ms(500);
asm CLRWDT;
led_wr_str (2, 16, " ", 8);
delay_ms(300);
asm CLRWDT;
led_wr_str (2, 16, "OVERLOAD", 8);
delay_ms(500);
asm CLRWDT;
led_wr_str (2, 16, " ", 8);
delay_ms(100);
led_wr_str (2, 16, "SWR= ", 8);
}
else if(type!=0) { // 1602 & 128*32// 1602
led_wr_str (1, 0, " ", 8);
delay_ms(100);
asm CLRWDT;
led_wr_str (1, 0, "OVERLOAD", 8);
delay_ms(500);
asm CLRWDT;
led_wr_str (1, 0, " ", 8);
delay_ms(300);
asm CLRWDT;
led_wr_str (1, 0, "OVERLOAD", 8);
delay_ms(500);
asm CLRWDT;
led_wr_str (1, 0, " ", 8);
delay_ms(300);
asm CLRWDT;
led_wr_str (1, 0, "OVERLOAD", 8);
delay_ms(500);
asm CLRWDT;
led_wr_str (1, 0, " ", 8);
delay_ms(100);
led_wr_str (1, 0, "SWR= ", 8);
}
asm CLRWDT;
SWR_old = 10000;
lcd_swr(SWR_fixed);
}
return;
}
void lcd_ind() {
char column;
asm CLRWDT;
if(1) {
work_int = 0;
if(ind.B0) work_int += Ind1;
if(ind.B1) work_int += Ind2;
if(ind.B2) work_int += Ind3;
if(ind.B3) work_int += Ind4;
if(ind.B4) work_int += Ind5;
if(type==4 | type==5) { // 128*64 OLED
IntToStr(work_int, work_str);
if(work_str[2] != ' ') work_str_2[0] = work_str[2]; else work_str_2[0] = '0';
work_str_2[1] = '.';
if(work_str[3] != ' ') work_str_2[2] = work_str[3]; else work_str_2[2] = '0';
if(work_str[4] != ' ') work_str_2[3] = work_str[4]; else work_str_2[3] = '0';
if(SW==1) column = 4; else column = 6;
led_wr_str (column, 16, "L=", 2);
led_wr_str (column, 16+6*12, "uH", 2);
led_wr_str (column, 16+2*12, work_str_2, 4);
}
else if(type==2 | type==3) {// 128*32 OLED
IntToStr(work_int, work_str);
if(work_str[2] != ' ') work_str_2[0] = work_str[2]; else work_str_2[0] = '0';
work_str_2[1] = '.';
if(work_str[3] != ' ') work_str_2[2] = work_str[3]; else work_str_2[2] = '0';
if(work_str[4] != ' ') work_str_2[3] = work_str[4]; else work_str_2[3] = '0';
if(SW==1) column = 0; else column = 1;
led_wr_str (column, 9, "L=", 2);
led_wr_str (column, 15, "uH", 2);
led_wr_str (column, 11, work_str_2, 4);
}
else if(type==1) { // 1602 LCD
work_int += 50; // Round
IntToStr(work_int, work_str);
if(work_str[2] != ' ') work_str_2[0] = work_str[2]; else work_str_2[0] = '0';
work_str_2[1] = '.';
if(work_str[3] != ' ') work_str_2[2] = work_str[3]; else work_str_2[2] = '0';
if(SW==1) column = 0; else column = 1;
led_wr_str (column, 9, "L=", 2);
led_wr_str (column, 14, "uH", 2);
led_wr_str (column, 11, work_str_2, 3);
}
}
asm CLRWDT;
if(1) {
work_int = 0;
if(cap.B0) work_int += Cap1;
if(cap.B1) work_int += Cap2;
if(cap.B2) work_int += Cap3;
if(cap.B3) work_int += Cap4;
if(cap.B4) work_int += Cap5;
//
if(type==4 | type==5) { // 128*64 OLED
IntToStr(work_int, work_str);
work_str_2[0] = work_str[2];
work_str_2[1] = work_str[3];
work_str_2[2] = work_str[4];
work_str_2[3] = work_str[5];
if(SW==1) column = 6; else column = 4;
led_wr_str (column, 16, "C=", 2);
led_wr_str (column, 16+6*12, "pF", 2);
led_wr_str (column, 16+2*12, work_str_2, 4);
}
else if(type==2 | type==3) {// 128*32 OLED
IntToStr(work_int, work_str);
work_str_2[0] = work_str[2];
work_str_2[1] = work_str[3];
work_str_2[2] = work_str[4];
work_str_2[3] = work_str[5];
if(SW==1) column = 1; else column = 0;
led_wr_str (column, 9, "C=", 2);
led_wr_str (column, 15, "pF", 2);
led_wr_str (column, 11, work_str_2, 4);
}
else if(type==1) { // 1602 LCD
IntToStr(work_int, work_str);
work_str_2[0] = work_str[3];
work_str_2[1] = work_str[4];
work_str_2[2] = work_str[5];
if(SW==1) column = 1; else column = 0;
led_wr_str (column, 9, "C=", 2);
led_wr_str (column, 14, "pF", 2);
led_wr_str (column, 11, work_str_2, 3);
}
}
asm CLRWDT;
return;
}
void Test_init(void) { // Test mode
if(type==4 | type==5) // 128*64 OLED
led_wr_str (0, 10, "TEST MODE", 9);
else if(type!=0) // 1602 LCD or 128*32 OLED
led_wr_str (0, 3, "TEST MODE", 9);
asm CLRWDT;
Delay_ms(500);
asm CLRWDT;
Delay_ms(500);
asm CLRWDT;
Delay_ms(500);
asm CLRWDT;
Delay_ms(500);
asm CLRWDT;
if(type==4 | type==5) // 128*64 OLED
led_wr_str (0, 10, " ", 9);
else if(type!=0) // 1602 LCD or 128*32 OLED
led_wr_str (0, 3, " ", 9);
atu_reset();
SW = 1; // C to OUT
set_sw(SW);
EEPROM_Write(255, cap);
EEPROM_Write(254, ind);
EEPROM_Write(253, SW);
//
if(type==4 | type==5) // 128*64 OLED
led_wr_str (0, 16+12*8, "l", 1);
else if(type!=0) // 1602 LCD or 128*32 OLED
led_wr_str (0, 8, "l", 1);
//
lcd_prep_short = 1;
lcd_prep();
return;
}
void cells_init(void) {
// Cells init
asm CLRWDT;
//oled_addr = EEPROM_Read(0); // address
type = EEPROM_Read(1); // type of display
if(EEPROM_Read(2) == 1) Auto = 1;
Rel_Del = Bcd2Dec(EEPROM_Read(3)); // Relay's Delay
Auto_delta = Bcd2Dec(EEPROM_Read(4)) * 10; // Auto_delta
min_for_start = Bcd2Dec(EEPROM_Read(5)) * 10; // min_for_start
max_for_start = Bcd2Dec(EEPROM_Read(6)) * 10; // max_for_start
max_swr = Bcd2Dec(EEPROM_Read(9)) * 10; // Max SWR
K_Mult = Bcd2Dec(EEPROM_Read(10)); // Tandem Match rate
//
asm CLRWDT;
Ind1 = Bcd2Dec(EEPROM_Read(16)) * 100 + Bcd2Dec(EEPROM_Read(17)); // Ind1
Ind2 = Bcd2Dec(EEPROM_Read(18)) * 100 + Bcd2Dec(EEPROM_Read(19)); // Ind2
Ind3 = Bcd2Dec(EEPROM_Read(20)) * 100 + Bcd2Dec(EEPROM_Read(21)); // Ind3
Ind4 = Bcd2Dec(EEPROM_Read(22)) * 100 + Bcd2Dec(EEPROM_Read(23)); // Ind4
Ind5 = Bcd2Dec(EEPROM_Read(24)) * 100 + Bcd2Dec(EEPROM_Read(25)); // Ind5
//
Cap1 = Bcd2Dec(EEPROM_Read(32)) * 100 + Bcd2Dec(EEPROM_Read(33)); // Cap1
Cap2 = Bcd2Dec(EEPROM_Read(34)) * 100 + Bcd2Dec(EEPROM_Read(35)); // Cap2
Cap3 = Bcd2Dec(EEPROM_Read(36)) * 100 + Bcd2Dec(EEPROM_Read(37)); // Cap3
Cap4 = Bcd2Dec(EEPROM_Read(38)) * 100 + Bcd2Dec(EEPROM_Read(39)); // Cap4
Cap5 = Bcd2Dec(EEPROM_Read(40)) * 100 + Bcd2Dec(EEPROM_Read(41)); // Cap5
//
Dysp_delay = Bcd2Dec(EEPROM_Read(0x30)); // Dysplay ON delay
Loss_ind = EEPROM_Read(0x31);
Fid_loss = Bcd2Dec(EEPROM_Read(0x32));
asm CLRWDT;
}