Author |
Message |
Topic: Sine lookup table |
ryan.reeve
Replies: 1
Views: 4275
|
Forum: General CCS C Discussion Posted: Sat Apr 26, 2008 5:38 am Subject: Sine lookup table |
Regarding the sine lookup table given in the examples. I am confused how this was generated and how to get the value sine from this table.
The sine of 0 is 0 but value at subscript 0 of the table is ... |
Topic: reception & transmission of GPS data |
ryan.reeve
Replies: 3
Views: 5545
|
Forum: General CCS C Discussion Posted: Tue May 08, 2007 8:38 am Subject: reception & transmission of GPS data |
I just want to transmit 6 parameters i.e.
float latitude,longitude
long heading, bearing
long altitude, speed
How can i make sure that I donot miss any character from Reception. |
Topic: reception & transmission of GPS data |
ryan.reeve
Replies: 3
Views: 5545
|
Forum: General CCS C Discussion Posted: Mon May 07, 2007 9:02 am Subject: reception & transmission of GPS data |
hi
I want to transmit parsed data recieved from GPS.
I am recieving at baud rate of 4800 and want to send it at 1200.
What is the best way to transmit the data.If I use transmit interrupt i.e INT_T ... |
Topic: interrupts disabled by compiler |
ryan.reeve
Replies: 1
Views: 7656
|
Forum: General CCS C Discussion Posted: Mon Apr 16, 2007 1:12 am Subject: interrupts disabled by compiler |
Hi,
I am using compiler 4.013.The only interrupt I am using is #int_rda.
The programs compiles sucessfullly but compiler disables the interrupt and show the warning:
" Interrupt disabled durin ... |
Topic: SEPARATE & INLINE procedures |
ryan.reeve
Replies: 4
Views: 6213
|
Forum: General CCS C Discussion Posted: Mon Apr 02, 2007 9:09 am Subject: thanx |
thnx a lot... |
Topic: SEPARATE & INLINE procedures |
ryan.reeve
Replies: 4
Views: 6213
|
Forum: General CCS C Discussion Posted: Mon Apr 02, 2007 2:31 am Subject: SEPARATE & INLINE procedures |
Hi all,
what is #separate directive.When it is useful and why not it is called like a conventional procedure.? |
Topic: struck with serial communication ? |
ryan.reeve
Replies: 1
Views: 3452
|
Forum: General CCS C Discussion Posted: Thu Mar 22, 2007 5:37 am Subject: struck with serial communication ? |
... |
Topic: serial interrupt with GPS |
ryan.reeve
Replies: 11
Views: 11776
|
Forum: General CCS C Discussion Posted: Wed Nov 29, 2006 12:13 am Subject: serial interrupt with GPS |
The Garmin GPS 12XL is a stand alone consumer unit. How did you create the connection to your PIC processor? Did you use the Garmin supplied cable or created one yourself? Have you added a MAX232 or s ... |
Topic: serial interrupt with GPS |
ryan.reeve
Replies: 11
Views: 11776
|
Forum: General CCS C Discussion Posted: Tue Nov 28, 2006 11:38 am Subject: serial interrupt with GPS |
Nmea sentence also has a check digit
Are u talkin about the checksum ?
what is its importance from navigational point of view.
thanks. |
Topic: serial interrupt with GPS |
ryan.reeve
Replies: 11
Views: 11776
|
Forum: General CCS C Discussion Posted: Tue Nov 28, 2006 12:40 am Subject: detail.. |
1. Tell us about your GPS. Post the manufacturer and part number.
2. Tell us about your hardware connections between the PIC and GPS.
Describe the circuit.
3. What PIC are you using ?
... |
Topic: serial interrupt with GPS |
ryan.reeve
Replies: 11
Views: 11776
|
Forum: General CCS C Discussion Posted: Mon Nov 27, 2006 1:16 pm Subject: that is included |
you need #fuses statement
#include <18f252.h>
#device ADC=10
#device *=16
#fuses H4,wdt128,NOPROTECT,NOBROWNOUT,noPUT,NOLVP,debug
#use delay(clock=40000000)
#use rs232(baud=9600, xmit ... |
Topic: serial interrupt with GPS |
ryan.reeve
Replies: 11
Views: 11776
|
Forum: General CCS C Discussion Posted: Mon Nov 27, 2006 12:54 pm Subject: serial interrupt with GPS |
Hi
I have connected GPS with PIC but all I receive are junk characters. Here is the code. Any ideas ?
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define SIZE 80 ... |
Topic: what wrong with rs232 |
ryan.reeve
Replies: 1
Views: 4330
|
Forum: General CCS C Discussion Posted: Sat Oct 14, 2006 1:33 am Subject: what wrong with rs232 |
Whats wrong with this code.i cant get any character from the serial port.
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define SIZE 80
#define CR 0x0d
#define CO ... |
Topic: single precision FP |
ryan.reeve
Replies: 4
Views: 5894
|
Forum: General CCS C Discussion Posted: Sun Oct 08, 2006 10:06 pm Subject: single precision FP |
what is meant by single precision Floating Point and Double precision Floating Point .Does CCS support double precsion float ? |
Topic: floating point with GPS |
ryan.reeve
Replies: 9
Views: 9837
|
Forum: General CCS C Discussion Posted: Sun Oct 01, 2006 11:45 pm Subject: floating point with GPS |
I put some 32bit cordic routines in the code library but they may not be for you. They are scaled in degrees but you have to be careful of the quadrant you are in. They are for 0 to 90 degrees but lik ... |
|