Search found 1074 matches

by drdoug
03 Apr 2011 16:12
Forum: mikroC PRO for PIC General
Topic: RF Module ALPHA TX433S
Replies: 11
Views: 5350

Re: RF Module ALPHA TX433S

Lincoln technology has some modules. They are easy to use but a little bigger and more expensive than others but worth it for small scale ease of use.
by drdoug
03 Apr 2011 15:20
Forum: mikroC PRO for PIC General
Topic: Cant read temperature from DS18B20
Replies: 19
Views: 6692

Re: Cant read temperature from DS18B20

Probably a register error or Mclr or wdt not disabled. Proper osc settings?
by drdoug
03 Apr 2011 01:01
Forum: mikroC PRO for PIC General
Topic: UART and interrupt
Replies: 4
Views: 1408

Re: UART and interrupt

The flag set is a pretty good method. I can't imagine a scenario where that would not be my first choice.
by drdoug
01 Apr 2011 04:45
Forum: mikroC PRO for PIC32 General
Topic: UARTx_Read_text () help
Replies: 19
Views: 12445

Re: UARTx_Read_text () help

I am starting to study your problem a little more. See if I am up to speed on things. The datasheet you referenced I saw 9600 baud but it is working at 57600? You wrote the MiniGPS program but on a PC? The PC is buffering all your data. Here is one of many uart interrupt samples I have posted. I thi...
by drdoug
31 Mar 2011 22:59
Forum: mikroC PRO for PIC32 General
Topic: UARTx_Read_text () help
Replies: 19
Views: 12445

Re: UARTx_Read_text () help

Two thoughts
use an interrupt
Maybe try a write from uart 2 but send it to the pc
by drdoug
31 Mar 2011 13:13
Forum: mikroC PRO for PIC32 General
Topic: UARTx_Read_text () help
Replies: 19
Views: 12445

Re: UARTx_Read_text () help

After I thought about it, if there was a problem with the peripheral bus and baud rate there would not be a readable output ("Encode Running"). The problem is likely on the input. Have you connected your pic to the PC to send in characters or did you connect the GPS to the PC? Perhaps the level comi...
by drdoug
30 Mar 2011 13:15
Forum: Product Announcements
Topic: Announcing the development of LIBSTOCK - Your place for code
Replies: 129
Views: 194070

Re: Announcing the development of LIBSTOCK - Your place for

I think as multiple compiler projects is OK as long as there is clear labeling of what the projects are. Perhaps use logos that are very easy to read. I think it would be helpful to have some selective searching similar to what Mouser offers to help limit the parameters. Sorry mE I hope this section...
by drdoug
30 Mar 2011 03:57
Forum: mikroC PRO for PIC32 General
Topic: UARTx_Read_text () help
Replies: 19
Views: 12445

Re: UARTx_Read_text () help

Is the baud rate calculation contingent on a certain peripheral clock rate and is that consistent?
Edit : don't use pull up.dn resistors on the lines.
by drdoug
30 Mar 2011 01:30
Forum: mikroC PRO for PIC32 General
Topic: UARTx_Read_text () help
Replies: 19
Views: 12445

Re: UARTx_Read_text () help

I would suspect the baud rate is wrong or there is a lot of noise.
by drdoug
29 Mar 2011 18:43
Forum: Product Announcements
Topic: Announcing the development of LIBSTOCK - Your place for code
Replies: 129
Views: 194070

Re: Announcing the development of LIBSTOCK - Your place for

I've been looking for a reason to pimp up some code for a uart interrupt example and this just might be it!
by drdoug
29 Mar 2011 04:33
Forum: mikroC PRO for PIC General
Topic: byte to ascii how to
Replies: 1
Views: 1314

Re: byte to ascii how to

I dont understand the question.
Do you have a value of 48 and want to know the ascii value ("0")?
Have you consulted the character map in the IDE?
What are doing with the data? - Uart? - LCD?
by drdoug
25 Mar 2011 14:16
Forum: mikroC PRO for PIC General
Topic: Serial Data save bits
Replies: 8
Views: 2561

Re: Serial Data save bits

Maybe try
hybyte = hybyte << 1;
by drdoug
25 Mar 2011 13:08
Forum: mikroC PRO for PIC General
Topic: Serial Data save bits
Replies: 8
Views: 2561

Re: Serial Data save bits

Build your own for fun. Cool. You should be able to increment. Maybe try

Code: Select all

...
HyByte = HyByte + SDA ;
HyByte << 1; 

Go to advanced search