Mercurial > public > hwos_code
diff src/ostc3.inc @ 268:29acdb601548
BUGFIX: Increase timing tolerance for S8 HUD (cR only)
author | heinrichsweikamp |
---|---|
date | Sun, 19 Apr 2015 20:41:48 +0200 |
parents | 6a1ac89e2098 |
children | 12ee30cbced9 |
line wrap: on
line diff
--- a/src/ostc3.inc Thu Apr 16 11:30:00 2015 +0200 +++ b/src/ostc3.inc Sun Apr 19 20:41:48 2015 +0200 @@ -20,7 +20,7 @@ ; Firmware definition #DEFINE softwareversion_x d'1' ; Software version XX.YY -#DEFINE softwareversion_y d'77' ; Software version XX.YY +#DEFINE softwareversion_y d'78' ; Software version XX.YY #DEFINE softwareversion_beta 0 ; (and 0 for release) ; Firmware version will appear in "Change Firmware" style #DEFINE firmware_expire_year .16 @@ -329,7 +329,6 @@ xCM res 1 ; compass bearing relative position compass_bearing res 2 ; this is where the bearing menu stores the actual heading for bearing - ;---------------------------- Common DATA ------------------------------------ common equ 0x100 ; Alias for "banksel common" @@ -512,6 +511,15 @@ tmp equ 0x1A0 ; Alias for CBLOCK directive. res 0x060 ; RESERVED area. +;---------------------------- Common2 DATA ------------------------------------ + +common2 equ 0xA00 ; Alias for "banksel common" +common2 udata_ovr common2 ; Bank1 general variables + +s8_rawdata_sensor1 res 3 ; 24bit A/D raw data from S8 HUD sensor 1 +s8_rawdata_sensor2 res 3 ; 24bit A/D raw data from S8 HUD sensor 2 +s8_rawdata_sensor3 res 3 ; 24bit A/D raw data from S8 HUD sensor 3 + ;----------------------------------------------------------------------------- ; Reserve BANK2 for general purpose buffer (strings, images, etc). ; NOTE: Needs to be aligned with a bank (LOW(buffer)==0).