Search found 115 matches

by dman776
Fri Feb 11, 2011 8:06 pm
Forum: Modules
Topic: TCPIP Stack MULTICAST
Replies: 1
Views: 2792

TCPIP Stack MULTICAST

Does David's TCPIP (Microchip-based) stack support a UPD server listening to a multicast address?? ie. 239.255.0.1

I can't seem to find anything on it.
by dman776
Fri Feb 11, 2011 3:25 am
Forum: Compiler
Topic: Structure help
Replies: 1
Views: 1939

Structure help

I am trying to create a structure that I can easily "load" via a .val(x) parameter, but, also set individual elements. Something like this: Structure TE131Root Val(38) As Byte PREAMBLE_SIZE As Val(0).AsWord // 0-1, len 2 POSTAMBLE_SIZE As Val(2).AsWord // 2-3, len 2 ACN_ID As Val(4) // 4-15, len 12 ...
by dman776
Thu Feb 10, 2011 6:43 pm
Forum: Compiler
Topic: Debugging with ICD2 in MPLAB
Replies: 1
Views: 1859

Debugging with ICD2 in MPLAB

I have been using SF thru MPLAB for a while. However, it seems that debugging thru MPLAB is a bit cumbersome. For some reason, MPLAB is not recognizing the COF file that is built and thus is not allowing debugging after a compile. My workaround has been to BUILD, import the COF file, then, hit the D...
by dman776
Thu Jan 06, 2011 4:23 pm
Forum: Compiler
Topic: v2.2.0.4 and 16-bit writes
Replies: 5
Views: 3624

I'd be interested in the beta as well.
Trying to compile something that also uses macros and getting:

"Function or subroutine call expected"

I'm currently using 2.2.0.4
by dman776
Mon Aug 03, 2009 3:31 am
Forum: User Modules
Topic: C guru needed
Replies: 12
Views: 11564

Sure would be nice if the "Report Abuse" buttons were enabled on the forums here.... :-)
by dman776
Tue Jul 21, 2009 5:25 pm
Forum: IDE
Topic: Online Updates option is greyed out
Replies: 3
Views: 3598

You must also be either logged in as an Administrator in Windows, or, use the "Run As" option when starting it (using an Admin user account info).
by dman776
Sat Jul 11, 2009 2:53 pm
Forum: General
Topic: problem with this forum
Replies: 5
Views: 4377

David, one thing that works fairly well for us is to add a required profile field upon registration like "what is 5+1". If foils spammers fairly well.
by dman776
Wed Jul 08, 2009 10:02 pm
Forum: Compiler
Topic: Help in How to detect an Overflow.
Replies: 8
Views: 4843

no problem.
And don't be afraid of ASM. It's not that bad. ;-)

This would be the equivalent in ASM+Swordfish...

---------------------------
asm
btfsc STATUS,0
endasm
myOverflowSub()
------------------------------

:-)
by dman776
Wed Jul 08, 2009 4:43 am
Forum: Compiler
Topic: Help in How to detect an Overflow.
Replies: 8
Views: 4843

could you just use:
inc(yourVar)
If STATUS.0 = 1 then
' do stuff because the carry bit is set
endif
by dman776
Mon May 18, 2009 4:02 pm
Forum: IDE
Topic: Conflicts between SFcompiler 2.1.0.1 and MPLAB IDE v8.10
Replies: 19
Views: 18081

YAY! It works for me.

FYI, my module files are on the same drive as MPLAB (ie. C: )

Not sure if that's the issue or not.
by dman776
Mon May 18, 2009 2:18 pm
Forum: IDE
Topic: Conflicts between SFcompiler 2.1.0.1 and MPLAB IDE v8.10
Replies: 19
Views: 18081

Thanks David! Will try this later today!
by dman776
Fri Apr 03, 2009 2:58 am
Forum: Compiler
Topic: Bootloader, code protection and config fuses
Replies: 9
Views: 5571

I wrote mine in ASM. It was written well before Swordfish added the relocatable directive.

Microchip has a good app note on bootloaders. AN1051 i think.
by dman776
Thu Apr 02, 2009 2:33 am
Forum: IDE
Topic: ToolBar Buttons
Replies: 1
Views: 2574

sounds like a good extension/add-on.
I don't use the IDE much, so, I can't say. (I use MPLAB because I use an ICD2 for programming/debugging.)
by dman776
Thu Apr 02, 2009 2:31 am
Forum: Compiler
Topic: Bootloader, code protection and config fuses
Replies: 9
Views: 5571

oh. gotcha. I use my own custom bootloader and built in for it to set the config fuses. It will work, with the exception of the above note. I suspect that if the bootloader, ignores all config fuses, that would be your issue.