;***************************************************************************************** ;Telescope Mount Controller IV ;(c) Martin Cibulski ;**************************************************************************************** .CSEG ;**************************************************************************************** ;English Messages #ifdef MESSAGES_ENGLISH ;**************************************************************************************** msg_release: .db " 2005-10-20 " .db 0,0 msg_start1: .db 13,13 .db "*****************************************",13 .db "* Microstepping Telescope Controller *",13 .db "* Martin Cibulski (c) " .db 0,0 msg_start2: .db "*",13 .db "*****************************************",13 .db 0,0 msg_alg_ana_sum: .db "RMS error: ",0 msg_fill_sin_table: .db "fill sine table for motor currents ...",13,0 msg_init_default_profile: .db "load default profile ...",13,0 msg_init_motor_controllers: .db "motor controllers ...",13,0,0 msg_init_motor_timer: .db "start motor timer 2 ...",13,0,0 msg_init_clock_timer_sync: .db "start clock timer 0 (sync?) ...",13,0,0 msg_init_clock_timer_async: .db "start clock timer 0 ...",13,0,0 msg_init_completed: .db "init completed, start calculation loop ... ",13,0,0 msg_init_timer_irq: .db "enable timer interrupts ... ",13,0 msg_init_database: .db "open object database ...",13,0 msg_init_alg: .db "math (1) ... ",13,0,0 msg_init_cor: .db "math (2) ... ",13,0,0 msg_init_hbx: .db "handbox display (new) ...",13,0,0 msg_init_tgo: .db "math (3) ... ",13,0,0 msg_init_twi: .db "start two wire interface ... ",13,0,0 msg_init_lcd: .db "handbox display ...",13,0,0 msg_init_mnu: .db "handbox menu ... ",13,0,0 msg_init_monitor: .db "monitor ...",13,0,0 msg_init_xymode: .db "XY positioner mode ... ",13,0,0 msg_mnu_command_ok: .db " OK ", "--------" msg_mnu_profile_number_of: .db " of",'0'+E_NO_OF_PROFILES," " msg_mnu_profile: .db "Profile " msg_mnu_slowfunc_busy: .db " BUSY ", "--------" msg_monitor_error: .db "ERROR",13, 0, 0 msg_monitor_help: .db 13,13 .db "Commands:",13 .db "db display byte ",13 .db "dw display word ",13 .db "dl display long ",13 .db "df display float",13 .db "da display adress ",13 .db "mb modify byte ",13 .db "mw modify word ",13 .db "ml modify long ",13 .db "mf modify float",13 .db "ports display ports",13 .db "labels list label names ",13 .db "reset restart application",13 .db "loadprof load profile from eeprom ",13 .db "saveprof save profile to eeprom ",13 .db 0,0 msg_newz12_align_first: .db "not aligned !",13,0,0 msg_profile_loaded1: .db "profile no. ",0,0 msg_profile_loaded2: .db " loaded",13,0,0 msg_profile_saved1: .db "profile no. ",0,0 msg_profile_saved2: .db " saved",13,0 ;**************************************************************************************** #endif ;**************************************************************************************** ;**************************************************************************************** ;German Messages #ifdef MESSAGES_GERMAN ;**************************************************************************************** ;**************************************************************************************** #endif ;****************************************************************************************