When trying to send serial message to same pin using HSEROUT and DEBUG and SEROUT2.
I have noted that HSEROUT overides any other messages .
If HSEROUT is uncommented only it work. If HSEROUT is commented the DEBUG and SEROUT2 works concurrently without problem.

h= 1234
main:
serout2 portb.5,baud96T,["Serout2=", dec4 h, 13,10]
debug "Debug=", dec4 h,13,10 'configured to same PORTB.5 same baud rate
'hserout ["HSerout=", dec4 h, 13,10] 'configured by chip to same PORTB.5 same baud rate
pause 500
goto main

Is this behavior normal ? Are there any way to enable and disable HSEROUT in order to have the 3 outputs working in the same pin ?