Author |
Message |
Topic: Interrupts disabled warning drives man crazy |
davidbue
Replies: 4
Views: 6566
|
Forum: General CCS C Discussion Posted: Thu Dec 13, 2012 6:07 am Subject: Interrupts disabled warning drives man crazy |
That is indeed a beautiful solution to the problem. Thank you!!! It's now implemented. |
Topic: Interrupts disabled warning drives man crazy |
davidbue
Replies: 4
Views: 6566
|
Forum: General CCS C Discussion Posted: Thu Dec 13, 2012 4:49 am Subject: Interrupts disabled warning drives man crazy |
You are brilliant! Thank you SO much for the reply.
You made understand the cause and how to fix it.
Big kudos! |
Topic: Interrupts disabled warning drives man crazy |
davidbue
Replies: 4
Views: 6566
|
Forum: General CCS C Discussion Posted: Thu Dec 13, 2012 3:42 am Subject: Interrupts disabled warning drives man crazy |
Dear all.
Please see the code example below. I cannot get rid of the compiler warning:
interrupts disabled during call to prevent re-entrancy (@DIV88)
Commenting out the line printf(bputc,&qu ... |
Topic: PAL Video generator |
davidbue
Replies: 2
Views: 8975
|
Forum: General CCS C Discussion Posted: Tue May 04, 2010 7:57 am Subject: PAL Video generator |
Hi forum Buddys!
I've decided to start working on a new hobby project.
I want to make a display generator library for generating composite video in PAL (and later NTSC) format.
My plan is to ... |
Topic: Smart communication between two pic. |
davidbue
Replies: 1
Views: 3022
|
Forum: General CCS C Discussion Posted: Wed Mar 18, 2009 3:41 am Subject: Smart communication between two pic. |
Hello everybody.
I'm pretty solid at PIC basics and have alot of routine in programming a single unit.
In my upcomming project I need to do something that I haven't tried before and I'd therefor ... |
Topic: FT232 and handshaking. |
davidbue
Replies: 2
Views: 8157
|
Forum: General CCS C Discussion Posted: Thu Nov 13, 2008 2:52 pm Subject: FT232 and handshaking. |
Hi PCM programmer.
As always you have the answer. You're a great guy to have hanging around on the forum.
Thank you. |
Topic: FT232 and handshaking. |
davidbue
Replies: 2
Views: 8157
|
Forum: General CCS C Discussion Posted: Thu Nov 13, 2008 1:58 pm Subject: FT232 and handshaking. |
Hi everybody!
I've just migrated from using the MAX232/ST232 for serial communication to the FT232R chip from FTDI.
So far I haven't had any problems using the FTDI chip, but one thing puzzles ... |
Topic: Encoder signal noise problem |
davidbue
Replies: 3
Views: 8424
|
Forum: General CCS C Discussion Posted: Thu Nov 13, 2008 1:51 pm Subject: Encoder signal noise problem |
Thank you very much you guys! Adding a lowpass filter solved my problem! |
Topic: Encoder signal noise problem |
davidbue
Replies: 3
Views: 8424
|
Forum: General CCS C Discussion Posted: Tue Nov 11, 2008 5:14 pm Subject: Encoder signal noise problem |
Good evening.
I'm working on a little project involving an engine and a 2-channel encoder.
I supply the encoder with a 5-volt regulated supply, as well as a common ground with my pic18f2220.
... |
Topic: A simple way to make datalogging in the kilobyte range. |
davidbue
Replies: 15
Views: 16352
|
Forum: General CCS C Discussion Posted: Thu Oct 30, 2008 11:25 am Subject: Thank you!! |
Thank you everybody for all the responses. I'll look into the different approaches, and try to decide what to do!
Best reagards! |
Topic: A simple way to make datalogging in the kilobyte range. |
davidbue
Replies: 15
Views: 16352
|
Forum: General CCS C Discussion Posted: Wed Oct 29, 2008 2:40 am Subject: A simple way to make datalogging in the kilobyte range. |
Hello everybody!
I need some of you code gurus to help me design my datalogging interface.
It's for an eco-car at our university, that runs more than 300 km/l = 706 miles per gallon fuel- ... |
Topic: Character array to long? |
davidbue
Replies: 3
Views: 4692
|
Forum: General CCS C Discussion Posted: Tue Oct 28, 2008 1:09 am Subject: Character array to long? |
Hi PCM programmer!
I'm so sorry. I forgot to say... I'd like to not use the atoil() as the stdlib.h eats up waaay to much memory when included. :-D
I'm looking for an alternative way to capture ... |
Topic: Character array to long? |
davidbue
Replies: 3
Views: 4692
|
Forum: General CCS C Discussion Posted: Mon Oct 27, 2008 5:08 pm Subject: Character array to long? |
Hi everybody.
I've got a little problem. Through hyperterminal the user must be able to type in a number which then is used as setpoint for a PID algorithm.
The number can be anything between 1- ... |
Topic: Playback of 1 bit encoded wav and mp3 files. |
davidbue
Replies: 5
Views: 57366
|
Forum: Code Library Posted: Wed Jun 11, 2008 7:20 am Subject: Playback of 1 bit encoded wav and mp3 files. |
Hi everybody.
I just wanted to share with you how I got a PIC18F2220 to play back 1 bit encoded sound files using the BTc Sound Encoder 2.0 Software from www.romanblack.com
#include &quo ... |
Topic: Read Hex as bit stream and send through a single pin. |
davidbue
Replies: 4
Views: 4770
|
Forum: General CCS C Discussion Posted: Mon Jun 09, 2008 2:05 pm Subject: Solved the problem. |
Hi everybody!
I solved the problem myself using the following:
int8 c;
c = 0x6F;
for (currentbit = 0; currentbit < 8; currentbit++){
... |
|