|
|
View previous topic :: View next topic |
Author |
Message |
temtronic
Joined: 01 Jul 2010 Posts: 9215 Location: Greensville,Ontario
|
|
Posted: Tue Jan 31, 2023 10:28 am |
|
|
9 bit vs 8 bit..
I asked cause 99.99% of all 'PC' computers ,serial data is 8 bits...unless they have special hardware and programs in them.
I suggest you changing to "bits=8.....". |
|
|
Humberto
Joined: 08 Sep 2003 Posts: 1215 Location: Buenos Aires, La Reina del Plata
|
|
Posted: Tue Jan 31, 2023 9:42 pm |
|
|
You are doing your first tests, I suggest to use simplest and short code.
With those signals on 'A' and 'B' you should have no problem receiving
data with this transceiver.
We don't see your whole code, apart from the code proposed as a handler on INT_RDA.
It is not a good idea to use a printf inside an interrupt routine.
Code: |
#use rs232(BAUD=9600, ENABLE=RS485_DE, XMIT=PIN_C6, RCV=PIN_C7, STREAM=RS485, ERRORS)
#use rs232(BAUD=9600, XMIT=PIN_xx, RCV=PIN_xx, STREAM=DEBUG)
#INT_RDA
void RDA_ISR(void)
{
int8 RxdByte = 0;
if(kbhit(RS485))
RxdByte = fgetc(RS485);
}
//--------------
void main()
{
....
....
enable_interrupts(INT_RDA);
enable_interrupts(GLOBAL);
....
while(1)
{
if(RxdByte != 0)
{
fprintf(DEBUG, "%c\r", RxdByte);
}
}
}
//-------------
|
Quote: |
The yellow trace is the 'A' signal, and the blue trace 'B', using the MAX3085 nomenclature.
The purple/pink trace is the oscilliscope math function of 'A-B'. |
Instead, use one channel of your oscilloscope to watch receiver Rx Pin1 and verify the level
at Rx_EN pin (tied together with Tx_EN) while in receiving state
best regards _________________ Humber |
|
|
Backfire
Joined: 12 Oct 2020 Posts: 46
|
|
Posted: Mon Feb 06, 2023 10:16 am |
|
|
Hi all,
thanks for peoples input so far. Through my troubleshooting, and having reviewed most suggestions and tested them, I still see no output (at RO, (pin1)) from the MAX3085 mounted on the board.
HOWEVER...
The PIC port pins I actually have wired to the RE & DE control pins of the MAX3085, are pins A6, and A7. Which just so happen to share most of the oscillator functionality!
I am actually running an internal oscillator, so I'm thinking I'm missing some #FUSE directives, or some other element of PIC configuration to make these pins function how I am intending, indeed even though driving them high is only for use in RS485 transmit functions, I am issuing output_high() function calls, and not seeing A6 or A7 change.
I have tried adding both the #FUSES NOEXTOSC & #FUSES NOCLKOUT |
|
|
temtronic
Joined: 01 Jul 2010 Posts: 9215 Location: Greensville,Ontario
|
|
Posted: Mon Feb 06, 2023 10:39 am |
|
|
I do not have that PIC or a new compiler, but check the processor header file( PICxxxx.h ) for the list of available fuses !
but something like
#fuse INTRC_IO
may be the choice ?
it says use the INTernal RC oscillator AND allow Input Output , on the pins normally used for the external clock
Others who use that PIC (or a newer compiler than me ) will have access to the header |
|
|
Backfire
Joined: 12 Oct 2020 Posts: 46
|
|
Posted: Mon Feb 06, 2023 10:50 am |
|
|
I'm happy to post just the FUSES from the .h file that seem related to the OSC pins, if that's forum permitted? It'd just be the three FUSE lines that reference the oscillator. |
|
|
temtronic
Joined: 01 Jul 2010 Posts: 9215 Location: Greensville,Ontario
|
|
Posted: Mon Feb 06, 2023 11:37 am |
|
|
post them...
I think they're in the 'comment section' at the top of the header file.
While technically not permitted, it could clear up your problem PDQ.
Maybe that PIC has new fuses, unknown to us with old compilers...
though the intrc_io has been around 'forever'....
Also post compiler version, maybe that version has a 'bug' in it and won't configure the fuses as needed ?
I've seen LOTS of 'code' displayed here...
Worst thing... a reprimand and the 3 lines get deleted.
OK, I'll take the 'hit' for suggesting he posts them.... |
|
|
Backfire
Joined: 12 Oct 2020 Posts: 46
|
|
Posted: Mon Feb 06, 2023 11:46 am |
|
|
Hi temtronic,
I've DM'ed you them... I think! phpBB and it's quirky 'outbox' and 'sentbox' implementation. |
|
|
temtronic
Joined: 01 Jul 2010 Posts: 9215 Location: Greensville,Ontario
|
|
Posted: Mon Feb 06, 2023 3:09 pm |
|
|
I'd try ...
RSTOSC_HFINTRC_32MHZ,NOCLKOUT
RST means 'restart' (which clock when PIC 'restarts'....)
in this case the HF internal RC clock, at 32MHz
NOCLKOUT, should allow that pin to be I/O.
Someone must have used a similar PIC......
I still have some with quartz windows on them..... |
|
|
Humberto
Joined: 08 Sep 2003 Posts: 1215 Location: Buenos Aires, La Reina del Plata
|
|
Posted: Mon Feb 06, 2023 5:00 pm |
|
|
Backfire wrote:
Quote: | The PIC port pins I actually have wired to the RE & DE control pins of the MAX3085, are pins A6, and A7.
Which just so happen to share most of the oscillator functionality!
|
Nop. To handle RE and DE pins: Remember that both pins of the MAX3085 transceiver must be tied together, so you only need 1 pin of MCU
Regarding pins A6 and A7, instead, I would connect a 20Mhz crystal (or whatever you have) between those pins.
I don't get these MCUs, but I would use the following fuse configuration:
Code: | #fuses HS, MCLR, PUT, NOLPBOR, NODEBUG, NOWDT, NOBOOTBLOCK, NOSAF, NOWRT, NOWRTB, NOWRTC, NOWRTSAF, NOLVP, NOPROTECT |
It sounds like you are struggling with various issues and we don't know if the PIC is running or not.
I'll suggest doing a basic 1 second LED blinking test so you can start to get in control of your project.
temtronic wrote:
Quote: | I still have some with quartz windows on them..... |
Me too !!! jeje I feel like a dinosaur!
regards _________________ Humber |
|
|
Ttelmah
Joined: 11 Mar 2010 Posts: 19477
|
|
Posted: Tue Feb 07, 2023 2:13 am |
|
|
I have to say though, stop worrying about fiddling with fuses!....
The easiest way to setup the clock is with the #use delay statement.
Don't set any clock fuse, use the delay statement to do this for you.
It is so good on recent compilers that setting clock fuses is no longer
either necessary or wanted.
#USE DELAY(INTERNAL=32MHz)
Is all that is needed. This by default sets the oscillator pins for normal I/O.
To use the external 20MHz crystal, just:
#USE DELAY(CRYSTAL=20MHz).
If you want a clock output on the former, just add CLOCK_OUT to the
#use statement.
On some chips now the permutations of the fuses are so complex, that
letting delay do it, is the only way to set this up safely. |
|
|
Backfire
Joined: 12 Oct 2020 Posts: 46
|
|
Posted: Tue Feb 07, 2023 4:24 am |
|
|
Good morning (where I am) everyone...
Once again many thanks for everybody’s advice, this forum is genuinely filled with some very knowledgeable people!
In the end, it was a configuration issue of kinds... though nothing to do with the oscillator...
@Ttelmah, I always try and start code files using the #USE DELAY(INTERNAL...) directive, my designs are rarely super-dependant on tight timing, so typically no need for crystals, and I am vaguely aware that the #USE DELAY does indeed do loads of configuration, so is a quick and clean way to get up and running.
@temtronic, I think I am going to be adding the RSTOSC_HFINTRC_32MHZ fuse also, seems like a smart idea to set an absolutely defined start-up oscillator configuration, just in case.
@Humberto, many issues indeed, doubtless many more to come! All part of the "joy" of development I suppose.
So... what was wrong? At a point later in code I have made a call to input_a(), without previously using a #use fixed_io(... ) directive, and without doing so my call to the input function obviously overwrote the TRIS values... Because, of course that’s exactly what I told the compiler to do, so it did it. Having now told the compiler I would like A6 & A7 to always be outputs, everything is running how it should.
Many thanks again to all! |
|
|
temtronic
Joined: 01 Jul 2010 Posts: 9215 Location: Greensville,Ontario
|
|
Posted: Tue Feb 07, 2023 9:48 am |
|
|
glad it's 'up and running'...
It'd be interesting to dump the listing and SEE exactly which fuse got set !
As Mr. T points out, modern PICs are COMPLICATED so yeah,maybe having the compiler 'figure it all out' is good....but I kinda want to SEE code, not just have blind faith in a machine doing it for me. |
|
|
Ttelmah
Joined: 11 Mar 2010 Posts: 19477
|
|
Posted: Tue Feb 07, 2023 10:29 am |
|
|
I felt the signal had to be being held high.
It was, but by your software...
Unfortunately nothing you posted showed this being done to the registers.
This is why we advise building a small test program, and then once this
is working 'building upwards'.....
Anyway, the good news is it is working.
Unfortunately Jay, on a lot of the newer chips (particularly the DsPIC's,
but some of the newer PIC 16's and 18's as well), the clock now has to
be setup 'after' the actual boot, and is not therefore controlled by the
fuses. Hence you have to rely on the compiler to setup the PLL on these. |
|
|
temtronic
Joined: 01 Jul 2010 Posts: 9215 Location: Greensville,Ontario
|
|
Posted: Tue Feb 07, 2023 10:43 am |
|
|
Thanks for the info Mr. T.
maybe I'll stick with PICs that I can see INSIDE......
life was a lot simpler with PCM 2.534 !!!
cheers
Jay |
|
|
Backfire
Joined: 12 Oct 2020 Posts: 46
|
|
Posted: Wed Feb 08, 2023 3:04 am |
|
|
I love that the CCS compiler can do so much "auto configuration", for wont of a better phrase. But with so many PICs in existence now, so many 'caveats' and 'device quirks' must also exist.
I remember in a previous project where I had, as per usual, set the oscillator with the #use delay(intern...) directive and was having issues with oscillator-dedicated pin IO also (I should've looked at the port pins more carefully in this project earlier, I admit!) and in this case specifically adding a NOCLKOUT fuse sorted the problem right away. Each chip has their 'personality' I sometimes feel!
I quite literally always start my programming / code development with a blinking LED routine, if you can't make a LED blink, it'll never do anything more fancy!
Cheers once again all. |
|
|
|
|
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
|