kemalkemal
Member level 1
- Joined
- Jan 27, 2013
- Messages
- 38
- Helped
- 1
- Reputation
- 2
- Reaction score
- 1
- Trophy points
- 1,288
- Activity points
- 1,672
Hi
I write a macro to send a character to a LCD module.
With this code i could send just one character. With multiple arguments I can send multiple characters but it is not the same as concatenate characters. What should I do? (In short I want to be able to send a sentence at once)
I write a macro to send a character to a LCD module.
Code:
load macro c_har
movlw c_har
banksel LCD_DATA
movwf LCD_DATA
call delay_100u
banksel LCD_CTRL
bsf E
call delay_100u
bcf E
endm