Re: [jallib] IF/END IF usage limit??

2022-08-06 Thread vsurducan
;> because of a clock speed begin to low. Maybe we should add a warning to >> that library. >> >> Kind regards, >> >> Rob >> >> -- >> *Van:* jal...@googlegroups.com namens flyway38 >> >> *Verzonden:* zaterdag 6 aug

Re: [jallib] IF/END IF usage limit??

2022-08-06 Thread flyway38
ry. >> >> Kind regards, >> >> Rob >> >> -- >> *Van:* jal...@googlegroups.com namens flyway38 >> >> *Verzonden:* zaterdag 6 augustus 2022 18:39 >> *Aan:* jallib >> *Onderwerp:* Re: [jallib] IF/END IF usage l

Re: [jallib] IF/END IF usage limit??

2022-08-06 Thread flyway38
gt; *Van:* jal...@googlegroups.com namens flyway38 < > fsfo...@gmail.com> > *Verzonden:* zaterdag 6 augustus 2022 18:39 > *Aan:* jallib > *Onderwerp:* Re: [jallib] IF/END IF usage limit?? > > Hi Vasile, > > Thank you for the quick reply. > Is have that feeling a

Re: [jallib] IF/END IF usage limit??

2022-08-06 Thread Rob CJ
add a warning to that library. Kind regards, Rob Van: jallib@googlegroups.com namens flyway38 Verzonden: zaterdag 6 augustus 2022 18:39 Aan: jallib Onderwerp: Re: [jallib] IF/END IF usage limit?? Hi Vasile, Thank you for the quick reply. Is have

Re: [jallib] IF/END IF usage limit??

2022-08-06 Thread flyway38
Hi Vasile, Thank you for the quick reply. Is have that feeling about something not right at some point of the code. In fact tried to exchange some "if/end if" for "case of" but no luck. Problem persists, but it seems only related to "if/end if" usage.. My code reads the ADC (PIC18F2550), for 100

Re: [jallib] IF/END IF usage limit??

2022-08-06 Thread vsurducan
This issue appears usually when you do not manage in a correct way the timing required by a specific hardware and the costs of your code length is higher than required for the device to run properly. Common workaround is to use interrupts or other sequential techniques. Example: DS18B20 is a

[jallib] IF/END IF usage limit??

2022-08-06 Thread flyway38
Hi all, Is there any limit in using IF/ END IF conditions? My code was running good untill added one more IF/END IF. At first didn't realize about a limit in using these conditions code, but then figured out that any other IF/END IF removal would let my code run ok again... Does anyone knows