Author |
Message |
Topic: bootloader #org and more |
bertronicom
Replies: 9
Views: 12792
|
Forum: General CCS C Discussion Posted: Wed May 05, 2010 4:09 pm Subject: CCS bootloader doesn't compiler |
I have modified the ex_bootloader.c as follows,
#include <Afo_system.h>
#define _bootloader
#include <bootloader.h>
#include <loader.c>
#org LOADER_END+2,LOADER_END ... |
Topic: ¿¿ is P¡C 18f26k20 really programmable ?? |
bertronicom
Replies: 5
Views: 6326
|
Forum: General CCS C Discussion Posted: Thu Oct 01, 2009 9:20 am Subject: problems debugging 18f26k20 by using ICD-U64 |
I have purchased an unit ICD-U64 (software 4.019, firmware 2.73, hardware rev2).
By using CCSload I can programming a PIC18f26k20 but I can't debug this part with debugger in PCWH.
Any suggestio ... |
Topic: ¿¿ is P¡C 18f26k20 really programmable ?? |
bertronicom
Replies: 5
Views: 6326
|
Forum: General CCS C Discussion Posted: Fri Sep 25, 2009 3:21 am Subject: ¿¿ is P¡C 18f26k20 really programmable ?? |
I can't program P¡C 18f26k20 with ICD-U40 and CCS load, whereas a colleague have programmed the same chip with WinPIC.
Any suggestion please!! |
Topic: USB PIC18f2550 problem |
bertronicom
Replies: 3
Views: 5216
|
Forum: General CCS C Discussion Posted: Mon May 07, 2007 9:44 am Subject: it works fine now |
finally it works the problem was:
I've selecting .inf from Microchip instead .inf CCS |
Topic: bootloader at 3.3v????? |
bertronicom
Replies: 0
Views: 3535
|
Forum: General CCS C Discussion Posted: Fri Mar 17, 2006 10:53 am Subject: bootloader at 3.3v????? |
Could I do bootloading at only 3.3volts in my board??? |
Topic: <loader.c> never ends when bootloading!!! |
bertronicom
Replies: 0
Views: 3618
|
Forum: General CCS C Discussion Posted: Thu Mar 16, 2006 7:07 am Subject: <loader.c> never ends when bootloading!!! |
I'm trying to do a bootloader by serial port.
I've coded this:
#IF USE_BOOTLOADER
#define _bootloader
#include <bootloader.h>
#include <loader.c>
int8 S ... |
Topic: How download .hex file from PDA to bootloading?? |
bertronicom
Replies: 0
Views: 5557
|
Forum: General CCS C Discussion Posted: Wed Mar 15, 2006 7:08 am Subject: How download .hex file from PDA to bootloading?? |
I try to make a bootloader by Bluetooth using a PDA. I'm using SIOW software from my PC using Xon-Xoff flow control. But I don't know how I can send this file from my PDA.
Thanks in advance |
Topic: low powering by Idle mode |
bertronicom
Replies: 6
Views: 16839
|
Forum: General CCS C Discussion Posted: Thu Mar 09, 2006 9:49 am Subject: not enough idle mode???? |
I've meassureed the current with a Fluke multimeter from the external power supply and this current was the whole consumption of my board. The only change in current when I changed to Idle mode was fr ... |
Topic: low powering by Idle mode |
bertronicom
Replies: 6
Views: 16839
|
Forum: General CCS C Discussion Posted: Thu Mar 09, 2006 6:16 am Subject: low powering by Idle mode |
Hello,
I'm struggling to minimize the power in my PIC18f6622 when the PIC hasn't nothing to do.
The normal current consumption of my PIC is 3mAmps withouth Idle mode. When Idle mode is active cu ... |
Topic: how to printf a floating number in the format of 00.00 ? |
bertronicom
Replies: 2
Views: 5528
|
Forum: General CCS C Discussion Posted: Tue Nov 29, 2005 10:28 am Subject: working with this |
fprintf(CH1,"V %3.2f L %3.2f \r\n",V1, Lenght1);
Try to code this, it's working now |
Topic: problems protecting mi PIC18 |
bertronicom
Replies: 8
Views: 9944
|
Forum: General CCS C Discussion Posted: Mon Aug 01, 2005 2:28 pm Subject: CODE_PROTECT |
Yes I did.
I know I can't clear fuses at 3.3v,
Even in order to set only CODE_PROTECT bit in fuses????
Then I only can program fuses at 5v???? |
Topic: problems protecting mi PIC18 |
bertronicom
Replies: 8
Views: 9944
|
Forum: General CCS C Discussion Posted: Mon Aug 01, 2005 1:50 pm Subject: enabling protection code |
HI Ttelmah
I'm using last version from CCS PCW & ICD-U and programming by ICD-U 40Mhz at 3.3v.
After I've programed this, I've verified fuses and no one was changed.
CODE_Protect was off ... |
Topic: problems protecting mi PIC18 |
bertronicom
Replies: 8
Views: 9944
|
Forum: General CCS C Discussion Posted: Thu Jul 07, 2005 1:44 pm Subject: problems protecting mi PIC18 |
I've put this in my code
#fuses PROTECT, NOWDT,WDT128,XT, NOOSCSEN, BROWNOUT, BORV20, NOPUT, STVREN, NODEBUG, LVP, NOWRT, NOWRTD, NOWRTB, NOWRTC, NOCPD, NOCPB, NOEBTR, NOEBTRB
I've my pic18f452 ... |
Topic: Cannot working without RS232 wire |
bertronicom
Replies: 1
Views: 4421
|
Forum: General CCS C Discussion Posted: Mon May 09, 2005 2:43 am Subject: Cannot working without RS232 wire |
I have my program running well when I've connected my 18f452 to my laptop.
But if I remove RS232 serial wires from laptop my program is always waiting for incoming bytes from fgets().
How I cou ... |
Topic: trouble wiht pointers |
bertronicom
Replies: 2
Views: 4510
|
Forum: General CCS C Discussion Posted: Thu Apr 28, 2005 2:57 pm Subject: trouble wiht pointers |
I have this code not working,
int8 Decode_BT_Packet ( int *id_Network, *Cmd, *LenData, *CRC ) {
if ( Full_Length_Packet >= 6 ) {
*id_Network = 15;
*Cmd = 16;
*LenData =17;
*CRC = ... |
|