Hello Unregistered ,
Hello, thank you for visiting the picbasic users forum. Just a little note to remind you that, if your have registeted for a user account and you have not logged in and posted a message, unused accounts are deleted from time to time.
We track user account usage. As part of our general maintenaince and to meet the GDPR requirments, we have elected to delete user accounts that are unused.
We define unused as:
NOT haveing ever posted a message on the forum
AND
NOT having logged in for more than 360 days.
If you find that your account is deleted, because of inactivity, you will need to contact the forum administrator to have the account re-instated. email: [email protected]
The timings depend on the type of LCD controller. Ususally the defaults of the manual are OK in most cases. As Darrel stated they are not optional and should always be on the top of the program. ...
Wow, I haven't used this routine yet, but I have to admit I would have fallen victim to that pesky detail as well. :wink: I added a NOTE to post #1 in case it helps someone.
I just noticed this gem from Darrel: https://dt.picbasic.co.uk/CODEX/AtoDAveraging
Yeah, I updated my post with a comment to clear that. I didn't field particularly clever after racking my brains trying to find the most efficient way to move data around. :D
OK, if you drop length then makes sense. Using length variable in the STR modifier on the other hand, is very clever. Ioannis
That was one area that had me overthinking USART. STR ArrayVar\n{\c}, receives a maximum of n bytes, unless it receives character c. If I misinterpreted the manual, I'd definitely appreciate...
The stop character in the Hserin command is needed if you do not know the length of the string. Since you define the length at the beginning of the transmission, and then use it in the STR...
16F18877 Transmitter Enabled/Disabled to have more than 1 PIC transmitting (using a Busy Line to determine which PIC can talk). ' Enable Transmitter TX1STA.5 = 1 ......
EDIT: Length parameter has been removed, I only use StartOfData and EndOfData characters now. ------------------------------------------- Yeah, i was waaaay overthinking this. Transmitting...
I think I figured out what's written in plain English right in my face: STR ArrayVar\n{\c} Receive string of n characters optionally ended in character c It looks like I can: - define the...
Re: LCD_AnyPin.pbp
The timings depend on the type of LCD controller. Ususally the defaults of the manual are OK in most cases.
Ioannis Today, 07:49As Darrel stated they are not optional and should always be on the top of the program.
...