Search found 16 matches
- Wed Mar 02, 2016 10:51 pm
- Forum: Modules
- Topic: SDFileSystem 4.0.9 Dir command
- Replies: 3
- Views: 7597
SDFileSystem 4.0.9 Dir command
I noticed that the DIR command when using it to search for all files in a directory becomes extremly slow. With a little over 1000 files it could take a couple of minutes to complete. When trying to figure out whats wrong I realized that the 'FindRootDirEntry' function always starts by reading in th...
- Wed Nov 19, 2014 11:17 am
- Forum: Compiler
- Topic: Issue with new Compiler update
- Replies: 20
- Views: 7871
Re: Issue with new Compiler update
Tested the beta. Same as update. I attached the core routines I use in the relevant functions including the INCLUDES. Maybe that helps.
PS: Its not a zip file but actually a bas file. uploader does not accept bas or txt files.
PS: Its not a zip file but actually a bas file. uploader does not accept bas or txt files.
- Tue Nov 18, 2014 8:23 pm
- Forum: Compiler
- Topic: Issue with new Compiler update
- Replies: 20
- Views: 7871
Re: Issue with new Compiler update
Me. too! I will do what ever is possible!
- Tue Nov 18, 2014 8:13 pm
- Forum: Compiler
- Topic: Issue with new Compiler update
- Replies: 20
- Views: 7871
Re: Issue with new Compiler update
I know...users are a pain... 

- Tue Nov 18, 2014 7:46 pm
- Forum: Compiler
- Topic: Issue with new Compiler update
- Replies: 20
- Views: 7871
Re: Issue with new Compiler update
Thanks David. I will try!
Unfortunately, I do not know what the minimum code footage is. As I mentioned I am running out of time to meet an important deadline and do not have much time. Lets see.
M.
Unfortunately, I do not know what the minimum code footage is. As I mentioned I am running out of time to meet an important deadline and do not have much time. Lets see.
M.
- Tue Nov 18, 2014 3:33 pm
- Forum: Compiler
- Topic: Issue with new Compiler update
- Replies: 20
- Views: 7871
Issue with new Compiler update
Last night I've updated to the newest compiler version. When start working this morning (which is a build and a debug run) I realized that I suddenly could not talk (via a piggy bag board RS485) to a set of custom boards in my project. The cards did not answer anymore. It took me until this afternoo...
- Tue Nov 18, 2014 9:41 am
- Forum: Compiler
- Topic: Dynamic pin reassignment during runtime
- Replies: 2
- Views: 2062
- Tue Nov 18, 2014 8:40 am
- Forum: Compiler
- Topic: Dynamic pin reassignment during runtime
- Replies: 2
- Views: 2062
Dynamic pin reassignment during runtime
Hello, input and/or output pins need to be defined when some modules are included in a project. Definition of pins is done before compilation. I would need to reassign those pins during runtime. Is that possible and how?
- Mon Jun 06, 2011 10:24 am
- Forum: Compiler
- Topic: 18F87J11 and M41T82 (RTC)
- Replies: 6
- Views: 4316
Thank you so much RadioT! You pointed me in the right direction. First I fixed a problem with the RST Pin. The voltage there should be in the M41T82 type R I am using be around 2.63 V and is a reference against Vcc which the chip uses to determine a power problem. It Vcc is below the 2.63 V referenc...
- Fri Jun 03, 2011 1:07 pm
- Forum: Compiler
- Topic: 18F87J11 and M41T82 (RTC)
- Replies: 6
- Views: 4316
18F87J11 and M41T82 (RTC)
Hi, I have a hard time with a 18F87J11 PIC. When I started with compiling I've got error messages regarding the ADC modul. It turned out that the modul tried to use ADCON2 register avlues which are not present in the 87J11. Fixed that. Now trying to implement a modified DS1307 modul which I adapted ...
- Tue Apr 06, 2010 12:28 pm
- Forum: Modules
- Topic: SI2C Slave how to ?
- Replies: 18
- Views: 13698
I2C Slave module
Octal,
did you post the above mentioned module? And if yes, where?
Michael
did you post the above mentioned module? And if yes, where?
Michael
- Fri Apr 24, 2009 6:22 am
- Forum: Compiler
- Topic: What is a ERROR_nnn NOT FOUND error?
- Replies: 2
- Views: 2265
- Thu Apr 23, 2009 4:07 pm
- Forum: Compiler
- Topic: What is a ERROR_nnn NOT FOUND error?
- Replies: 2
- Views: 2265
What is a ERROR_nnn NOT FOUND error?
I've posted the same question in the Usermodule section. Due to the fact that I did not get any response besides one I take the freedom to post it again this section. The problem is that when I compile my code I suddenly started to get the above mentioned errors (nnn represents a number). These stat...
- Thu Apr 23, 2009 3:55 pm
- Forum: User Modules
- Topic: What is an 'endif_319 not found' error
- Replies: 4
- Views: 4121
It seems that CharlieM idea is true. It does not directly have to do with the SD.Filesize command. When I copy my code to a new file everything compiles well until I copy a conditional statement which calls a sub. Any reference to this specific sub brings the ENDIF_nnn not found error (in fact it gi...
- Wed Apr 22, 2009 11:48 am
- Forum: User Modules
- Topic: What is an 'endif_319 not found' error
- Replies: 4
- Views: 4121
Here we go: Sub Send_Dir_extended() Dim ReturnString As String * 13 Dim FileSizeValue As LongWord FileSizeValue = 0 ReturnString = "FirstTry" While ReturnString <>"" SD.ChDir(cdRoot) ReturnString = Dir(dirNext,sdDirectory) If ReturnString = "" Then Exit EndIf USART.Write(ReturnString) SD.ChDir(Retur...