Search found 126 matches

by garryp4
Tue Feb 01, 2011 9:40 pm
Forum: Modules
Topic: USART.READFLOAT problem
Replies: 5
Views: 3965

Thanks for the reply. Just looked at the usart routine and all it is just as Jerry said. Wonder the the purpose of the instruction is?

Thanks
by garryp4
Mon Jan 31, 2011 11:17 pm
Forum: Modules
Topic: USART.READFLOAT problem
Replies: 5
Views: 3965

USART.READFLOAT problem

I am trying to use the readfloat instruction but only get 0.0000 as a result. // device and clock... Device = 18F4620 Clock = 20 // import modules... Include "usart.bas" Include "convert.bas" Dim red As PORTE.2, ' Red LED green As PORTE.1 ' Green lED Dim f1 As Float '********************************...
by garryp4
Mon Nov 01, 2010 11:52 am
Forum: IDE
Topic: Online Updates... option is greyed is greyed out
Replies: 3
Views: 3393

Thanks for the reply CharlieM. I guess I should have mentioned that I already tried both these options. I use Swordfish on 4 different computers, 2 at home with a 'home' dongle, and 2 away with a 'backpack' dongle. I have done updates for the last few years as they became available. The PC giving me...
by garryp4
Mon Nov 01, 2010 2:54 am
Forum: IDE
Topic: Online Updates... option is greyed is greyed out
Replies: 3
Views: 3393

Online Updates... option is greyed is greyed out

I remember reading that one needs Administrator access to do an online update. I just verified I have full administrator access on my PC at work but the option is greyed out. I can't log on as Administrator but have full privileges. Any ideas?

Thanks
by garryp4
Mon Mar 08, 2010 5:13 am
Forum: Modules
Topic: 7-bit ascii
Replies: 8
Views: 7699

Thanks for the replies. And Nigle, you are correct. I want 7E1 not 7N1. Think I am so used to 8N1 and failed to check what I typed. So, I came up with // device and clock... Device = 18F4620 Clock = 40 // import modules... Include "usart.bas" Include "convert.bas" Private Dim an_sw As PORTD.4, ' Hig...
by garryp4
Mon Mar 01, 2010 10:40 pm
Forum: Modules
Topic: 7-bit ascii
Replies: 8
Views: 7699

Thanks for the quick reply. Its a standard called SDI-12. The communication is 7n1 at 1200 baud. Kind of dates the standard, but have a need none the less. I did look at the code for the usart and suart libraries but do not know assembly. That's why I use swordfish. What changes did you have to make...
by garryp4
Mon Mar 01, 2010 8:41 am
Forum: Modules
Topic: 7-bit ascii
Replies: 8
Views: 7699

7-bit ascii

Has anyone tried to do 7-bit ascii? I have a project to communicate with an old system that uses it.
by garryp4
Mon Oct 12, 2009 3:50 am
Forum: Compiler
Topic: 18K K series
Replies: 4
Views: 3531

The device files are auto generated from MPLAB files -
Then would it be very difficult or time consuming to make the device files for an 18F46J11? Is the RTC the reason these devices are not supported?
by garryp4
Tue Aug 04, 2009 9:21 am
Forum: Compiler
Topic: PIC18FxxJ11 Series
Replies: 12
Views: 7240

So, I have sent 2 e-mails to David asking about support for these devices but have heard nothing back. While I am sure his time is limited, a response of some sort should not be asking too much :x Does anyone out there know what it take to make the supporting files for these devices? I am working on...
by garryp4
Wed Jul 22, 2009 12:05 pm
Forum: Compiler
Topic: PIC18FxxJ11 Series
Replies: 12
Views: 7240

Thanks for the quick reply. 1- I do not have a compiler for the 24Fxx/24Hxx/ds33xx or the time/$ to learn/buy one. I have seen some posts about the possibility of a new SF that would. Count me as close to the front of the line if/when they become available. I really like SF and how helpful some of y...
by garryp4
Wed Jul 22, 2009 7:49 am
Forum: Compiler
Topic: PIC18FxxJ11 Series
Replies: 12
Views: 7240

No answer yet. Even better than receiving the files, can anyone out there explain what needs to be changed from one of the other 18FxxJ11 files? To be honest, i don't understand what is in the .bas or .inc files in the includes directory. After a search on Microchips site, I see that none of the new...
by garryp4
Wed Jul 22, 2009 7:34 am
Forum: IDE
Topic: Online Updates option is greyed out
Replies: 3
Views: 3621

That would explain it. I can't be an admin at work as the IT guy's got this PC clamped down tight. Guess will have to update onto a memory stick and run off it. Thanks though.
by garryp4
Mon Jul 20, 2009 8:34 am
Forum: Compiler
Topic: PIC18FxxJ11 Series
Replies: 12
Views: 7240

Will the 18F46J11 be supported soon? Really would like to use the RTC.

Thanks.
by garryp4
Mon Jul 20, 2009 8:24 am
Forum: IDE
Topic: Online Updates option is greyed out
Replies: 3
Views: 3621

Online Updates option is greyed out

I see on the homepage that the newest version is 2.1.0.2. My current version is 2.0.2.0. The Online Updates option under View is greyed out and not selectable. How can I get the updated one?

Thanks
by garryp4
Fri May 29, 2009 5:01 pm
Forum: Modules
Topic: Can the SDFileSystem.bas module work with SPI memory
Replies: 2
Views: 2945

Am reading an accelerometer xyz (word each) data at 80 hz and writing to memory. The Ramtrom memory is more expensive but easily keeps up with that. Want to be able to read/write faster if possible. I could write to the Ramtrom memory then re-write to an sd card to make the fat 16/32 file to send of...