Search found 16 matches

by MichaelL
Wed Mar 02, 2016 10:51 pm
Forum: Modules
Topic: SDFileSystem 4.0.9 Dir command
Replies: 3
Views: 6247

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...
by MichaelL
Wed Nov 19, 2014 11:17 am
Forum: Compiler
Topic: Issue with new Compiler update
Replies: 20
Views: 7065

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.
by MichaelL
Tue Nov 18, 2014 8:23 pm
Forum: Compiler
Topic: Issue with new Compiler update
Replies: 20
Views: 7065

Re: Issue with new Compiler update

Me. too! I will do what ever is possible!
by MichaelL
Tue Nov 18, 2014 8:13 pm
Forum: Compiler
Topic: Issue with new Compiler update
Replies: 20
Views: 7065

Re: Issue with new Compiler update

I know...users are a pain... :D
by MichaelL
Tue Nov 18, 2014 7:46 pm
Forum: Compiler
Topic: Issue with new Compiler update
Replies: 20
Views: 7065

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.
by MichaelL
Tue Nov 18, 2014 3:33 pm
Forum: Compiler
Topic: Issue with new Compiler update
Replies: 20
Views: 7065

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...
by MichaelL
Tue Nov 18, 2014 9:41 am
Forum: Compiler
Topic: Dynamic pin reassignment during runtime
Replies: 2
Views: 1843

Re: Dynamic pin reassignment during runtime

Thanks!
by MichaelL
Tue Nov 18, 2014 8:40 am
Forum: Compiler
Topic: Dynamic pin reassignment during runtime
Replies: 2
Views: 1843

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?
by MichaelL
Mon Jun 06, 2011 10:24 am
Forum: Compiler
Topic: 18F87J11 and M41T82 (RTC)
Replies: 6
Views: 4023

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...
by MichaelL
Fri Jun 03, 2011 1:07 pm
Forum: Compiler
Topic: 18F87J11 and M41T82 (RTC)
Replies: 6
Views: 4023

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 ...
by MichaelL
Tue Apr 06, 2010 12:28 pm
Forum: Modules
Topic: SI2C Slave how to ?
Replies: 18
Views: 13040

I2C Slave module

Octal,
did you post the above mentioned module? And if yes, where?
Michael
by MichaelL
Fri Apr 24, 2009 6:22 am
Forum: Compiler
Topic: What is a ERROR_nnn NOT FOUND error?
Replies: 2
Views: 2099

Works!
Thanks a lot!
Any idea what was wrong?
Michael
by MichaelL
Thu Apr 23, 2009 4:07 pm
Forum: Compiler
Topic: What is a ERROR_nnn NOT FOUND error?
Replies: 2
Views: 2099

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...
by MichaelL
Thu Apr 23, 2009 3:55 pm
Forum: User Modules
Topic: What is an 'endif_319 not found' error
Replies: 4
Views: 3865

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...
by MichaelL
Wed Apr 22, 2009 11:48 am
Forum: User Modules
Topic: What is an 'endif_319 not found' error
Replies: 4
Views: 3865

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...