Mercurial > public > hwos_code
comparison src/tft_outputs.asm @ 200:dcd513840c6c
cleanup
author | heinrichsweikamp |
---|---|
date | Wed, 12 Nov 2014 19:33:15 +0100 |
parents | efe70488a04b |
children | dd9b167e82dc |
comparison
equal
deleted
inserted
replaced
199:800f09c9089c | 200:dcd513840c6c |
---|---|
1141 movff o2_mv_sensor3+1,hi ; in 0.1mV steps | 1141 movff o2_mv_sensor3+1,hi ; in 0.1mV steps |
1142 output_16dp .4 ; xxx.y mV | 1142 output_16dp .4 ; xxx.y mV |
1143 STRCAT_PRINT "mV " | 1143 STRCAT_PRINT "mV " |
1144 WIN_SMALL surf_menu_sensor4_column,surf_menu_sensor4_row | 1144 WIN_SMALL surf_menu_sensor4_column,surf_menu_sensor4_row |
1145 | 1145 |
1146 btfss c3_hardware | 1146 btfss cr_hardware |
1147 bra TFT_menu_hud_2 ; always for normal OSTC3 | 1147 bra TFT_menu_hud_2 ; always for normal OSTC3 |
1148 btfss s8_digital | 1148 btfss s8_digital |
1149 return ; Not for analog | 1149 return ; Not for analog |
1150 TFT_menu_hud_2: | 1150 TFT_menu_hud_2: |
1151 STRCPY "Batt:" | 1151 STRCPY "Batt:" |
2776 ;============================================================================= | 2776 ;============================================================================= |
2777 ; Writes ostc3 #Serial and Firmware version in splash screen | 2777 ; Writes ostc3 #Serial and Firmware version in splash screen |
2778 ; | 2778 ; |
2779 global TFT_serial | 2779 global TFT_serial |
2780 TFT_serial: | 2780 TFT_serial: |
2781 WIN_TINY .0,.239-.14 | 2781 WIN_TINY .0,.225 |
2782 STRCPY "OSTC3 #" ; Won't translate that... | 2782 STRCPY "OSTC" ; Won't translate that... |
2783 btfsc cr_hardware | |
2784 bra TFT_serial2 | |
2785 STRCAT "3 #" | |
2786 bra TFT_serial3 | |
2787 TFT_serial2: | |
2788 STRCAT " cR #" | |
2789 TFT_serial3: | |
2783 rcall TFT_cat_serial | 2790 rcall TFT_cat_serial |
2784 | 2791 |
2785 STRCAT " v" | 2792 STRCAT " v" |
2786 WIN_COLOR color_greenish | 2793 WIN_COLOR color_greenish |
2787 rcall TFT_cat_firmware | 2794 rcall TFT_cat_firmware |