Search found 1177 matches
- Fri Mar 05, 2021 12:37 pm
- Forum: Modules
- Topic: USB problems with windows 10
- Replies: 3
- Views: 42
Re: USB problems with windows 10
If it's been running fine for your but now your are getting multiple reports of the same problem, it could be a win10 issue. I've seen similar problems in the past (but not HID related) where the rules behind a driver implementation are tightened up - showing up a problem that was there from the beg...
- Fri Mar 05, 2021 11:13 am
- Forum: Modules
- Topic: USB problems with windows 10
- Replies: 3
- Views: 42
Re: USB problems with windows 10
I haven't personally seen any issues with HID and win10 (yet). It's unusual for HID to give problems (unlike CDC which nearly always has a driver issue). When you say connection issues, is it connecting then dropping off? Or does it sometimes fail to connect completely? It could possibly be a descri...
- Wed Feb 24, 2021 6:40 am
- Forum: Wiki Announcements
- Topic: New Article: Using Vectored Interrupts with Swordfish
- Replies: 1
- Views: 5780
Re: New Article: Using Vectored Interrupts with Swordfish
Thanks for this Jerry...
- Wed Jan 20, 2021 4:31 pm
- Forum: Announcements
- Topic: Maintenence
- Replies: 0
- Views: 435
Maintenence
The site will be unavailable occasionally over the next few days. Please don't panic! Performing important updates...
Dave
Dave
- Fri Jan 15, 2021 7:43 am
- Forum: General
- Topic: interested in new device support?
- Replies: 12
- Views: 853
Re: interested in new device support?
I'm not aware of problems with my email.
However, do what Jerry suggests. #
PM me on this board and include your Swordfish registration number. I can then get the latest compiler build to you...
Dave
However, do what Jerry suggests. #
PM me on this board and include your Swordfish registration number. I can then get the latest compiler build to you...
Dave
- Sat Jan 02, 2021 3:31 pm
- Forum: IDE
- Topic: Problem with the path to the Library folder
- Replies: 21
- Views: 1198
Re: Problem with the path to the Library folder
You will see an *.idf file if you have COFF enabled. For example:
myProgram.bas
will generate
myProgram.idf
in the same folder as your *.bas file
myProgram.bas
will generate
myProgram.idf
in the same folder as your *.bas file
- Fri Jan 01, 2021 9:49 am
- Forum: IDE
- Topic: Problem with the path to the Library folder
- Replies: 21
- Views: 1198
Re: Problem with the path to the Library folder
It's located in the same folder as your main program *.bas file. Ensure that:
View...Compile and Program Options
"Generate debugger COFF file"
is enabled
View...Compile and Program Options
"Generate debugger COFF file"
is enabled
- Thu Dec 17, 2020 7:43 am
- Forum: IDE
- Topic: Problem with the path to the Library folder
- Replies: 21
- Views: 1198
Re: Problem with the path to the Library folder
The priority is:
(1) folder that contains the main program you are compiling
then
(2) swordfish user library
then
(3) swordfish standard library
it has always been like that - no changes have been made to include lookup priorities
(1) folder that contains the main program you are compiling
then
(2) swordfish user library
then
(3) swordfish standard library
it has always been like that - no changes have been made to include lookup priorities
- Sat Sep 12, 2020 7:40 am
- Forum: IDE
- Topic: UMC Build Error
- Replies: 17
- Views: 839
Re: UMC Build Error
You will need to install a version of MPLAB (it's still available from the microchip site to download). The builder will not work with MPLABX.
- Sat Sep 05, 2020 8:30 am
- Forum: IDE
- Topic: Problem with the path to the Library folder
- Replies: 21
- Views: 1198
Re: Problem with the path to the Library folder
You have described the correct behaviour for an install > c:\users\g\documents\swordfish\userlibrary still did not exist An operating system may have multiple accounts. So when the application is first run it creates a unique copy of certain directories to ensure that if any changes are made by an i...
- Wed Sep 02, 2020 7:16 am
- Forum: IDE
- Topic: Problem with the path to the Library folder
- Replies: 21
- Views: 1198
Re: Problem with the path to the Library folder
You could try enabling "VIEW...EDITOR OPTIONS" -> "Display Full Filename in Application Title Bar" to see where any file is located.
- Sun Aug 02, 2020 12:28 pm
- Forum: General
- Topic: Forum zip files
- Replies: 7
- Views: 879
Re: Forum zip files
I think it's something along the lines of what bitfogav was saying. Maybe it was to do with the move to phpBB3 - I really don't know. Assuming for a moment it is. And the files are stored as ascii and not binary, you may have a very small chance of converting ascii to binary with some utility *provi...
- Sun Aug 02, 2020 11:13 am
- Forum: General
- Topic: Forum zip files
- Replies: 7
- Views: 879
Re: Forum zip files
The change over to phpBB3 happened much earlier. I think 2014. Certainly your idea of a FTP transfer that incorrectly auto detected ASCII rather than binary would fit *but* I haven't touched the files directory at all using any kind of FTP process.
- Sun Aug 02, 2020 8:20 am
- Forum: General
- Topic: Forum zip files
- Replies: 7
- Views: 879
Re: Forum zip files
I do not know what has happened. phpBB stores attachments under a directory called "files". It seems that a number of these files have become corrupted. My rolling backup only goes back to May 2020. When I try and restore from then, the files are still damaged. I have no idea what has caused this. I...
- Sun Jun 28, 2020 10:08 am
- Forum: Compiler
- Topic: Default Variable Assignment
- Replies: 27
- Views: 1778
Re: Default Variable Assignment
When I originally designed Swordfish, the aim was to be as "familiar" to some other basics - where you didn't need an explicit procedure "main" entry point - like PROTON or PICBASIC. In hindsight, I agree with you. Having an explicit entry point would have made things a lot easier. Particularly with...