Hi Thorsten,
1. I made some changes in code for the pic18f4685 for the 4 x OP and 4 x INS buttons. These buttons look like working right now. But I don't know how correct are the code changes total(y).
the code part from the
cs_menu_buttons.inc :
before:
;; CS_MENU_BUTTON_InsOP1
;; movlw 0
;; rgoto CS_MENU_BUTTON_InsOP_Cont
;; CS_MENU_BUTTON_InsOP2
;; movlw 1
;; rgoto CS_MENU_BUTTON_InsOP_Cont
;; CS_MENU_BUTTON_InsOP3
;; movlw 2
;; rgoto CS_MENU_BUTTON_InsOP_Cont
;; CS_MENU_BUTTON_InsOP4
;; movlw 3
;; rgoto CS_MENU_BUTTON_InsOP_Cont
changed to :
CS_MENU_BUTTON_Ins1
bcf CS_MENU_MODE, CS_MENU_MODE_INS_OP
movlw 0
rgoto CS_MENU_BUTTON_InsOP_Cont
CS_MENU_BUTTON_Ins2
bcf CS_MENU_MODE, CS_MENU_MODE_INS_OP
movlw 1
rgoto CS_MENU_BUTTON_InsOP_Cont
CS_MENU_BUTTON_Ins3
bcf CS_MENU_MODE, CS_MENU_MODE_INS_OP
movlw 2
rgoto CS_MENU_BUTTON_InsOP_Cont
CS_MENU_BUTTON_Ins4
bcf CS_MENU_MODE, CS_MENU_MODE_INS_OP
movlw 3
rgoto CS_MENU_BUTTON_InsOP_Cont
CS_MENU_BUTTON_OP1
bsf CS_MENU_MODE, CS_MENU_MODE_INS_OP
movlw 0
rgoto CS_MENU_BUTTON_InsOP_Cont
CS_MENU_BUTTON_OP2
bsf CS_MENU_MODE, CS_MENU_MODE_INS_OP
movlw 1
rgoto CS_MENU_BUTTON_InsOP_Cont
CS_MENU_BUTTON_OP3
bsf CS_MENU_MODE, CS_MENU_MODE_INS_OP
movlw 2
rgoto CS_MENU_BUTTON_InsOP_Cont
CS_MENU_BUTTON_OP4
bsf CS_MENU_MODE, CS_MENU_MODE_INS_OP
movlw 3
rgoto CS_MENU_BUTTON_InsOP_Cont
2. Where I can change the columns separation sign - " | ". Or how I can it correct to this view : " | ".
On the my LCDs I see
"12" instead of
" | " for the MBFM and for the MBSid.
In the previous MBFM v1_1 I deleted these signs in the cs_menu.inc , if I remember it true.
Thanks for your advice !
Regards,
Janis
This post has been edited by Janis1279: 08 March 2011 - 21:58