Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
--> Then do it this way.but without "UART TX(TXPOLL) subroutine the code is working fine.
bcf INTCON,GIE
bsf STATUS,RP0
bsf PIE1,TMR1IE
banksel T1CON
bsf T1CON,TMR1ON
initsci
banksel SPBRG ; <------------------------- bank 1 !
movlw 19h
movwf SPBRG
movlw 25h ;set up for async operation
movwf TXSTA
bcf STATUS,RP0 ;back to file 0 for a moment
movlw 90h ;enable serial port operations and the associated pins
movwf RCSTA
clrf TXREG ;clear our serial port buffers for start up
clrf RCREG
call init