Search found 3 matches
- Fri Mar 17, 2017 5:00 pm
- Forum: General
- Topic: Register & De-Register
- Replies: 1
- Views: 5388
Register & De-Register
Hey guys, I have a question about licensing Swordfish. My license was installed on some older machines with HD failure. I looked up my account info to install Swordfish again and the installer package unfortunately says that Swordfish was still installed on those older machines, however they don't e...
- Tue May 17, 2016 10:19 pm
- Forum: Modules
- Topic: USART.Read 2-character limit?
- Replies: 2
- Views: 5636
Re: USART.Read 2-character limit?
Look, I get to reply to my own post. The solution here is trivial but I'm sharing in case anyone finds this in the future. The PIC18F46K22 does have a 2 byte receive buffer. I got the string length limit issue by checking If USART.DataAvailable = true Then ... in the code, but then calling a few sub...
- Tue May 17, 2016 9:53 pm
- Forum: Modules
- Topic: USART.Read 2-character limit?
- Replies: 2
- Views: 5636
USART.Read 2-character limit?
Hi, I have a question about the Swordfish USART read function when it comes to strings. It seems I can only read 2 ASCII characters from the USART.Read(myString) call. I'm using a PIC18F46K22 which has a 2-byte EUSART receive buffer. I've read most string receiving routines use a circular buffer to ...