Search found 1741 matches

by mnfisher
Sat Apr 18, 2026 10:39 pm
Forum: Projects - Embedded
Topic: Microchip xc16 compiler settings with Flowcode 11
Replies: 2
Views: 38

Re: Microchip xc16 compiler settings with Flowcode 11

I think you need to use %~1 (instead of %1) to remove the double quotes...

Currently the compiler is looking for "flowcode1".c rather than flowcode1.c

Martin
by mnfisher
Thu Apr 16, 2026 11:07 am
Forum: General
Topic: ESP32 C6 mini compile does not work
Replies: 26
Views: 9955

Re: ESP32 C6 mini compile does not work

I think running the 'install.bat' in the framework folder "might" install the RISC-V compiler.

If not re-running the toolset installer in 'repair' mode and checking the options?

Martin
by mnfisher
Tue Apr 14, 2026 10:31 pm
Forum: General
Topic: ESP32 C6 mini compile does not work
Replies: 26
Views: 9955

Re: ESP32 C6 mini compile does not work

It looks like the default flowcode installation doesn't include the risc-v compiler - the other targets use an extensa processor... Try running 'install.bat' which is found in the framework directory. I can't test this as my setup does include this - again i used the default espressif installer with...
by mnfisher
Tue Apr 14, 2026 9:54 pm
Forum: General
Topic: MCP320x 16-bit to Nano
Replies: 13
Views: 1056

Re: MCP320x 16-bit to Nano

Just tested the above bit-bang code with an Arduino (Uno) - and seems to work okay. With a VRef (and VDD) set at 5V and IN+ and IN- connected to a PSU (I also tried connecting IN- to GND) - I got reasonable results. For example - with the PSU set to 3V - 2.987V was output to UART. I connected the pi...
by mnfisher
Tue Apr 14, 2026 2:22 pm
Forum: General
Topic: ESP32 C6 mini compile does not work
Replies: 26
Views: 9955

Re: ESP32 C6 mini compile does not work

Odd, if it uses the same batch file - have you checked compiler config menu?

It doesn't seem to get far enough for another explanation?
by mnfisher
Tue Apr 14, 2026 11:13 am
Forum: General
Topic: ESP32 C6 mini compile does not work
Replies: 26
Views: 9955

Re: ESP32 C6 mini compile does not work

I don't have an issue compiling for the C6. I'm not sure why others are getting issues? A few things to try. 1) Make sure that target is set correctly. Use 'idf.py set-target esp32c6' and if it doesn't complete successfully try deleting the 'build' directory. 2) I'm actually using v5.5 of the toolse...
by mnfisher
Mon Apr 13, 2026 9:27 am
Forum: Feature Requests
Topic: ToBinary string manipulation
Replies: 11
Views: 536

Re: ToBinary string manipulation

That's new to me....

Neat!
by mnfisher
Sun Apr 12, 2026 5:20 pm
Forum: Feature Requests
Topic: ToBinary string manipulation
Replies: 11
Views: 536

Re: ToBinary string manipulation

I moved this into a small component (I called it NumberUtilities - maybe more routines to come?) The source is still called ToBinary :-) I added a Value and ToString macros that take either a string and a base or a value and a base. Base can be from 2 (binary) up to 16 (hex) - although could be exte...
by mnfisher
Sat Apr 11, 2026 8:26 pm
Forum: Feature Requests
Topic: ToBinary string manipulation
Replies: 11
Views: 536

Re: ToBinary string manipulation

Hi Bob, Looks like a neat solution - reduces transmission time by 50%. It's a good optimisation. I'll have a play at putting it into a component - if you don't use a function the compiler will optimise it away (at least when it's compiled, I'm not sure what the situation with web apps is) - or as an...
by mnfisher
Sat Apr 11, 2026 6:00 pm
Forum: Feature Requests
Topic: ToBinary string manipulation
Replies: 11
Views: 536

Re: ToBinary string manipulation

I added a binary string (in the form "101010101" with upto 32 characters) to value function too. In simulation I've added the various variables to the viewer so that you can compare them (ie check they are correct :-) ) Note that it doesn't check the validity of the string (so "10ABC&...