Author |
Message |
Topic: 18f46j50 library |
giustraman
Replies: 1
Views: 2653
|
Forum: General CCS C Discussion Posted: Fri Nov 13, 2009 9:00 am Subject: 18f46j50 library |
Could anyone give me 18f46j50 library?? In my 4.057 PCWHD Compiler there isn't it... Best regards. |
Topic: zigbee network |
giustraman
Replies: 1
Views: 3396
|
Forum: General CCS C Discussion Posted: Mon Nov 09, 2009 2:55 am Subject: zigbee network |
I'm trying to realize a zigbee network with some sensors embedded on RTD. Someone could give me examples about coordinator, router and end device?? Thanks. |
Topic: problem with receiver circuit |
giustraman
Replies: 2
Views: 3451
|
Forum: General CCS C Discussion Posted: Wed Oct 28, 2009 4:48 am Subject: problem with receiver circuit |
do not verify the condition:
if(count_edge==48) |
Topic: problem with receiver circuit |
giustraman
Replies: 2
Views: 3451
|
Forum: General CCS C Discussion Posted: Wed Oct 28, 2009 4:23 am Subject: problem with receiver circuit |
I'm trying to measure temperature thanks a transmitter-receiver circuit. I have a problem with the receiver: External interrupt setting on rising edge do not function: for example I have introduced a ... |
Topic: lcd & pic16f648a |
giustraman
Replies: 1
Views: 3972
|
Forum: General CCS C Discussion Posted: Thu Oct 15, 2009 1:41 am Subject: lcd & pic16f648a |
I am trying to program the PIC16F48a to drive an LCD to display temperature. The program doesn't compile :(. Are the CCS internal LCD controller functions compatible with the PIC16F648a?
Particula ... |
Topic: online menu |
giustraman
Replies: 0
Views: 2453
|
Forum: General CCS C Discussion Posted: Wed Oct 14, 2009 1:36 am Subject: online menu |
While I was writing code, casually appeared an online menu which helps about how to write code...How can I recall it?? |
Topic: change vref for adc |
giustraman
Replies: 1
Views: 3919
|
Forum: General CCS C Discussion Posted: Tue Oct 13, 2009 4:34 am Subject: change vref for adc |
How can I change the voltage reference for adc, for example from 5V to 2,5 V?? I'm using pic 12f675, and it supports this change of vref. |
Topic: access into a register |
giustraman
Replies: 4
Views: 5203
|
Forum: General CCS C Discussion Posted: Mon Oct 12, 2009 3:30 am Subject: Read, not write.. |
I need to read a bit of a register, for example the bit n°1 of ADCONO register (address: 0x1F)...How can I do it?? Thanks... |
Topic: access into a register |
giustraman
Replies: 4
Views: 5203
|
Forum: General CCS C Discussion Posted: Mon Oct 12, 2009 2:39 am Subject: access into a register |
How can i get access into a register/bit?? |
Topic: wakeup from sleep using wdt |
giustraman
Replies: 10
Views: 8390
|
Forum: General CCS C Discussion Posted: Fri Oct 09, 2009 8:08 am Subject: ADDED ADC CLOCK DIV 8 |
#include <12F675.h>
#device adc=10
#FUSES WDT //Watch Dog Timer
#FUSES INTRC_IO //Internal RC Osc, no CLKOUT
#FUSES NOCPD //No EE pr ... |
Topic: wakeup from sleep using wdt |
giustraman
Replies: 10
Views: 8390
|
Forum: General CCS C Discussion Posted: Fri Oct 09, 2009 6:30 am Subject: upgrade version with adc turn off before trasmission... |
Turn off adc:
...
setup_wdt(WDT_576MS);
setup_adc(ADC_OFF);
...
#include <12F675.h>
#device adc=10
#FUSES WDT //Watch Dog Timer
#FUSES INTRC_IO / ... |
Topic: wakeup from sleep using wdt |
giustraman
Replies: 10
Views: 8390
|
Forum: General CCS C Discussion Posted: Fri Oct 09, 2009 6:21 am Subject: wakeup from sleep using wdt |
I added 20us delay between the two analog inputs... About precision I'm realizing a circuit for temperature measure...
#include <12F675.h>
#device adc=10
#FUSES WDT ... |
Topic: wakeup from sleep using wdt |
giustraman
Replies: 10
Views: 8390
|
Forum: General CCS C Discussion Posted: Fri Oct 09, 2009 4:02 am Subject: upgrade code |
#include <12F675.h>
#device adc=10
#FUSES WDT //Watch Dog Timer
#FUSES INTRC_IO //Internal RC Osc, no CLKOUT
#FUSES NOCPD //No EE pr ... |
Topic: wakeup from sleep using wdt |
giustraman
Replies: 10
Views: 8390
|
Forum: General CCS C Discussion Posted: Fri Oct 09, 2009 3:10 am Subject: added fuses |
#include <12F675.h>
#device adc=10
#FUSES WDT //Watch Dog Timer
#FUSES INTRC_IO //Internal RC Osc, no CLKOUT
#FUSES NOCPD //No EE pr ... |
Topic: wakeup from sleep using wdt |
giustraman
Replies: 10
Views: 8390
|
Forum: General CCS C Discussion Posted: Fri Oct 09, 2009 2:06 am Subject: wakeup from sleep using wdt |
I'm projecting a temperature sensor and I want to measure thermal condition about every 500ms. To reduce power consumption I want to put my pic (12f675) into sleeping mode, thus I'm using wdt to wake ... |
|