Author |
Message |
Topic: New programmer, ICD 3 or PIC KIT 3 |
neochrome32
Replies: 5
Views: 9223
|
Forum: General CCS C Discussion Posted: Mon Oct 13, 2014 8:10 pm Subject: New programmer, ICD 3 or PIC KIT 3 |
Asmallri, i broke it; i reverse the power on the pins by accident and blew the lot up :( not really covered lol... my own error, i was thinking tie ICD3 was a MUCH quick programming speeds. but its lo ... |
Topic: New programmer, ICD 3 or PIC KIT 3 |
neochrome32
Replies: 5
Views: 9223
|
Forum: General CCS C Discussion Posted: Mon Oct 13, 2014 1:01 pm Subject: New programmer, ICD 3 or PIC KIT 3 |
I broke my PIC KIT 3, but im thinking about this ICD 3, while the pic kit 3 does the job, and is far cheaper, is there any advantages to the ICD 3?
i cant find any clear info about this...
Also, ... |
Topic: list collection class help |
neochrome32
Replies: 5
Views: 9035
|
Forum: General CCS C Discussion Posted: Thu Sep 18, 2014 1:01 pm Subject: list collection class help |
ohh, never thought of that, now with the 58k ram is available on the chip im using...
this would work well ... this might work! thank you!
looking into .c though seems that it only supports up t ... |
Topic: list collection class help |
neochrome32
Replies: 5
Views: 9035
|
Forum: General CCS C Discussion Posted: Thu Sep 18, 2014 8:40 am Subject: list collection class help |
hmm not easily done for me, im not a bright as you Ttelmah.. lol
ok seems like this is over kill for something i wanna do, im trying to make a GUI, but need to make a way of "push" " ... |
Topic: list collection class help |
neochrome32
Replies: 5
Views: 9035
|
Forum: General CCS C Discussion Posted: Thu Sep 18, 2014 6:52 am Subject: list collection class help |
Sorry for the topic not being clear :(
not sure how else to describe this...
im trying to make a dynamic list.
abit like
List.Add(&object);
List.Remove(&object);
List.MoveUp(& ... |
Topic: Clock speed issue PIC18F46K22 at power-up |
neochrome32
Replies: 6
Views: 15009
|
Forum: General CCS C Discussion Posted: Tue Sep 09, 2014 6:10 am Subject: Clock speed issue PIC18F46K22 at power-up |
try this...
#include <18F46k22.h>
#DEVICE *=16
#FUSES MCLR
#FUSES PRIMARY_ON
#FUSES NOWDT
#FUSES NOPROTECT
#FUSES NODEBUG
#FUSES PLLEN //Ineternal 16MHz + PLL(4) ... |
Topic: "My own filesystem" what should I take into accoun |
neochrome32
Replies: 17
Views: 35357
|
Forum: General CCS C Discussion Posted: Mon Sep 08, 2014 7:53 pm Subject: "My own filesystem" what should I take into accoun |
its a shame i may have to abandon Fat32 if there is a huge price tag on it, BUUUT i got most of what i need working.
i wrote a basic crummy MKDIR function that appears to work well enough, and wind ... |
Topic: "My own filesystem" what should I take into accoun |
neochrome32
Replies: 17
Views: 35357
|
Forum: General CCS C Discussion Posted: Sun Sep 07, 2014 6:41 pm Subject: "My own filesystem" what should I take into accoun |
your right, if i had to do it that way, the space would have to be NOT an issue! also, would have to create my own clustering systems too, basically at the end of each 512bytes there is a 4byte chunk ... |
Topic: "My own filesystem" what should I take into accoun |
neochrome32
Replies: 17
Views: 35357
|
Forum: General CCS C Discussion Posted: Sun Sep 07, 2014 2:50 am Subject: "My own filesystem" what should I take into accoun |
your talking about a File based file systems! LOL i like it, from what i've read over the fat32, it is OVER powered for small devices! but i got mkdir to work, its crude.... oddly i just created two f ... |
Topic: "My own filesystem" what should I take into accoun |
neochrome32
Replies: 17
Views: 35357
|
Forum: General CCS C Discussion Posted: Sat Sep 06, 2014 7:55 pm Subject: "My own filesystem" what should I take into accoun |
liking the longname by #hash !! seems to work out well, the only issue im having is, file size, when it gets a bit big, its gonna have to scroll through the names.. i am using external RAM, but thats ... |
Topic: "My own filesystem" what should I take into accoun |
neochrome32
Replies: 17
Views: 35357
|
Forum: General CCS C Discussion Posted: Sat Sep 06, 2014 8:43 am Subject: "My own filesystem" what should I take into accoun |
i think i might have to just write my own FileSystem for fun later, but that fat.c it looks complete, i have a working disk IO ..
which parts need to be tweaked?? if you know that is? |
Topic: "My own filesystem" what should I take into accoun |
neochrome32
Replies: 17
Views: 35357
|
Forum: General CCS C Discussion Posted: Sat Sep 06, 2014 7:23 am Subject: "My own filesystem" what should I take into accoun |
is there any merit to the FAT.C drive supplied with CCS C? |
Topic: "My own filesystem" what should I take into accoun |
neochrome32
Replies: 17
Views: 35357
|
Forum: General CCS C Discussion Posted: Sat Sep 06, 2014 6:00 am Subject: "My own filesystem" what should I take into accoun |
long names are helpful for song names and .SID names, its ok to use 8.3 filenames, but i dont want to end up renaming 1000's of songs lol.
im building a JukeMOX it plays .SID files and good old MOD ... |
Topic: "My own filesystem" what should I take into accoun |
neochrome32
Replies: 17
Views: 35357
|
Forum: General CCS C Discussion Posted: Sat Sep 06, 2014 2:27 am Subject: "My own filesystem" what should I take into accoun |
hmm would i be allowed to store the LONG name in the file somewhere on the system then?
i dont mind short files appearing on windows devices (to be fair short names on the device either)
BUT to avoi ... |
Topic: "My own filesystem" what should I take into accoun |
neochrome32
Replies: 17
Views: 35357
|
Forum: General CCS C Discussion Posted: Fri Sep 05, 2014 10:08 pm Subject: "My own filesystem" what should I take into accoun |
ok, its a little ambitious i know, but I'm forever finding references to Fat32 being a MS patents.. which to be fair is ok for my own projects... BUT i want to design a very very basic filesystem, all ... |
|