Following on from the thread where I asked re simple setup I bought the modules from Ciseco.
I've made up a board based on the schematic below and also some code, however it doesn't work. I have made a small test code just to get the module to transmit but no joy.
I can see on the scope that the pic sends the serout at 1 second intervals but I can't seem to get the module to transmit.
Factory default according to the site is 9600baud in transparent serial mode. The modules are the ARF version from Ciseco as per previous thread.
I've tried serout and serout2.
Can anyone see what the problem may be ?
Code:
'
INCLUDE "ALLDIGITAL.pbp"
Include "modedefs.bas"
DEFINE OSC 10
TRISA=$00001000
CMCON=7
TESTBIT VAR BYTE
TESTBIT = 1
TEST:
SEROUT PortA.2,N9600,["BOB",TESTBIT] '9600bps
PAUSE 1000
GOTO TEST
END
Bookmarks