CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

Bug in set_uart_speed (18F2525 and 18F2431)

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
jlvern_
Guest







Bug in set_uart_speed (18F2525 and 18F2431)
PostPosted: Wed Mar 16, 2005 3:14 am     Reply with quote

CCS PCH C Compiler, Version 3.221, 24699 16-mars-05 09:57


#define XTAL 10000000
#defie BAUDS_HOST 19200
//------------------------------------------------------------------------
// Directives CCS
//------------------------------------------------------------------------
// pas de sleep après le programme
#build(NOSLEEP)
// Les registres de direction NE SONT PAS modifiés à chaque entrée/sortie
#use fast_io( a )
#use fast_io( b )


// Indique la base de temps pour les calculs de temporisations
#use delay( clock = XTAL, RESTART_WDT )
// Spécifie les lignes d'interfaces série et la vitesse de modulation
#use rs232( baud= BAUDS_HOST, xmit=PIN_C6, rcv=PIN_C7,stream=HOSTPC )


1) 18F2525
.................... set_uart_speed( BAUDS_HOST );
07EC: BSF FB8.3
// False : FB8.3 is BRG16 (for 16 bit timer) not BRGH
// BRG16 need to be 0 and BRGH is in TXSTA (0xFAC)
07EE: MOVLW 81
07F0: MOVWF FAF
07F2: MOVLW 26
07F4: MOVWF FAC


1) 18F2431
// 18F2431 is a different chip : BAUDCON is NOT at the same place
.................... set_uart_speed( BAUDS_HOST );
07EC: BSF FB8.3 // False : FB8 is ANSEL0 !!!
07EE: MOVLW 81
07F0: MOVWF FAF
07F2: MOVLW 26
07F4: MOVWF FAC
Ttelmah
Guest







PostPosted: Wed Mar 16, 2005 4:12 am     Reply with quote

Your comments relating to the first chip, are wrong.

1) 18F2525
.................... set_uart_speed( BAUDS_HOST );
07EC: BSF FB8.3
// False : FB8.3 is BRG16 (for 16 bit timer) not BRGH
// BRG16 need to be 0 and BRGH is in TXSTA (0xFAC)

What do you mean 'false'. This sets the system to use the 16bit BRG counter. Though it makes no difference in this case, the compiler defaults to doing this. There is nothing 'wrong' with enabling the 16bit counter, it is legitimate on all chips supporting it. BRG16, does not 'need' to be 0.

07EE: MOVLW 81
07F0: MOVWF FAF
07F2: MOVLW 26
07F4: MOVWF FAC
This sets BRGH, as well as enabling the transmitter.

The value being put into the BRG, results in 19230Hz, for the clock rate you list.
The only fault, is that the code does not clear the high byte of the BRG register. This is potentially dangerous if this has become set...

The second example, is unfortunately fairly typical. Microchip, have become more prone to 'shuffling' registers between chip models than they used to, and sometimes the compiler lags and uses the wrong registers. When the EUSART first appeared, for the first few compiler versions, you either had to program it yourself, or tell the compiler to treat it as a USART.
Just bug report this to CCS. They'll typically fix this in a couple of days.

Best Wishes
Guest








Re: Bug in set_uart_speed (18F2525 and 18F2431)
PostPosted: Wed Mar 16, 2005 6:49 am     Reply with quote

jlvern_ wrote:
CCS PCH C Compiler, Version 3.221, 24699 16-mars-05 09:57

1) 18F2431
// 18F2431 is a different chip : BAUDCON is NOT at the same place
.................... set_uart_speed( BAUDS_HOST );
07EC: BSF FB8.3 // False : FB8 is ANSEL0 !!!
07EE: MOVLW 81
07F0: MOVWF FAF
07F2: MOVLW 26
07F4: MOVWF FAC


Easy fix:
Tools -> Device Editor -> 18F2431 -> UART -> ESCI -> BAUDCTL= FAA

Code:
.................... set_uart_speed( 19200 );
002C:  BSF    FAA.3  <-- this is correct
002E:  MOVLW  81
0030:  MOVWF  FAF
0032:  MOVLW  26
0034:  MOVWF  FAC


If you don't like BRG16 for F2525, then do this:
Tools -> Device Editor -> 18F2525 -> UART -> ESCI -> Standard

Code:
.................... set_uart_speed( 19200 );
0030:  MOVLW  20
0032:  MOVWF  FAF
0034:  MOVLW  26
0036:  MOVWF  FAC


Cheers !
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group