You're welcome.
I have added the path for FC9 as well
Search found 1858 matches
- Wed Jul 02, 2025 2:31 pm
- Forum: General
- Topic: Help with XC compiler problem
- Replies: 13
- Views: 12067
- Wed Jul 02, 2025 12:15 pm
- Forum: General
- Topic: Help with XC compiler problem
- Replies: 13
- Views: 12067
Re: Help with XC compiler problem
Hello.
You can see them within internals.c
Which can be found at the following for Flowcode10::
FlowcodeV9:
Since the directory is hidden, just copy and paste the above path in windows explorer.
You can see them within internals.c
Which can be found at the following for Flowcode10::
Code: Select all
%ProgramData%\MatrixTSL\FlowcodeV10\CAL
Code: Select all
%ProgramData%\MatrixTSL\FlowcodeV9\CAL
- Sun Jun 29, 2025 10:28 am
- Forum: Bug Reports
- Topic: ESP32 ADC not working
- Replies: 22
- Views: 1454
Re: ESP32 ADC not working
Hello.
Yes there is.
If you run Library updates and change Files in use to full database, the latest ADC CAL should resolve your issues.
You should now be able to used ADC2 instead of being restricted to ADC1.
You will still need be wary of sone pins:
Yes there is.
If you run Library updates and change Files in use to full database, the latest ADC CAL should resolve your issues.
You should now be able to used ADC2 instead of being restricted to ADC1.
You will still need be wary of sone pins:
- Fri Jun 27, 2025 12:33 am
- Forum: General
- Topic: Syntax Error
- Replies: 8
- Views: 461
Re: Syntax Error
Hi Abhi I have looked at the files you sent. The are way to large for me to track down the issue. My guess it could be a recursive function or manual macro linking created a circular reference. Whatever it is the compiler does not like it at all. Looking at the .as file the issues is within Set_Para...
- Wed Jun 25, 2025 3:34 pm
- Forum: General
- Topic: Syntax Error
- Replies: 8
- Views: 461
Re: Syntax Error
Hello.
Just the words syntax error showing for error is normally unconnected pins.
If you can post your .fcfx, .c and .msg.txt files, then we can help you further.
The bold number you have shown, will refer to a line number within a file ,the error could be found.
Just the words syntax error showing for error is normally unconnected pins.
If you can post your .fcfx, .c and .msg.txt files, then we can help you further.
The bold number you have shown, will refer to a line number within a file ,the error could be found.
- Wed Jun 25, 2025 8:16 am
- Forum: General
- Topic: error or bug
- Replies: 14
- Views: 1834
Re: error or bug
Hello. The compiler is warning you because it sees the same piece of code (the one that reads or writes the whole port) being used both in your main program and inside an interrupt. It does this to make sure you don’t ever run that code in both places at once, which could corrupt data. In your IOC_P...
- Tue Jun 24, 2025 10:59 pm
- Forum: General
- Topic: Please help me change the properties of components
- Replies: 6
- Views: 366
Re: Please help me change the properties of components
Hello. During code generation, the value (or string) you enter is compiled into a constant scoped to that specific component handle. Because it’s scoped, identical property names never clash. It doesn’t matter how many Host properties you create, by adding additional IotMadeEasy components —on the e...
- Tue Jun 24, 2025 10:40 pm
- Forum: General
- Topic: error or bug
- Replies: 14
- Views: 1834
Re: error or bug
Hello from the project you sent me via PM it is what I thought. You should not be using any delays within interrupts. What will make it worse if you uses delays in both interrupts and non interrupts, Or any other duplicated components ports etc That will trigger a non-reentrant function. You need to...
- Tue Jun 24, 2025 8:42 am
- Forum: General
- Topic: error or bug
- Replies: 14
- Views: 1834
Re: error or bug
Hello.
Are you using any components or delays within interrupts?
If your Project is different to the one you posted above, then can you post your project on here.
Are you using any components or delays within interrupts?
If your Project is different to the one you posted above, then can you post your project on here.
- Tue Jun 24, 2025 8:32 am
- Forum: General
- Topic: Compiler error
- Replies: 5
- Views: 668
Re: Compiler error
That's great.
Thank you for letting us know.
Thank you for letting us know.