Search found 1426 matches

by mnfisher
Sat Jul 12, 2025 8:07 am
Forum: General
Topic: Ultra High Speed Data Acquisition mathod need advice!!
Replies: 1
Views: 29

Re: Ultra High Speed Data Acquisition mathod need advice!!

It certainly sounds possible - and it probably depends on how many samples need to be read before offloading them to the pc or SD card. (Is it just ~300000 then time enough to dump to pc) If the pic has sufficient RAM then save the data to an array and then write to SD or UART. Alternatively you cou...
by mnfisher
Thu Jul 10, 2025 2:14 pm
Forum: General
Topic: ESP32 C6 mini compile does not work
Replies: 5
Views: 183

Re: ESP32 C6 mini compile does not work

It's odd - then the only thing I am doing different is using a separate directory for each project. One option is to try a full clean of the directory - as the Flowcode build leaves the majority of files pre-compiled (and if you previously used a different chip?) So in a command prompt 'cd' to the p...
by mnfisher
Tue Jul 08, 2025 5:00 pm
Forum: General
Topic: ESP32 C6 mini compile does not work
Replies: 5
Views: 183

Re: ESP32 C6 mini compile does not work

That compiled AOK for me after I set the pin for the LED to a different value (it seemed to be set as unconnected - although it also looked like maybe GPIO23. Setting it to GPIO23 was okay)

I am also using 5.3.2 which might make a difference?

Martin
by mnfisher
Sun Jul 06, 2025 1:50 pm
Forum: Feature Requests
Topic: 'Exclude From Build' options for build error debug
Replies: 4
Views: 1395

Re: 'Exclude From Build' options for build error debug

In a way, you can mimic this using a global constant let's call DEBUG and then in each macro have a code block at the start with #ifdef DEBUG And sat the end of the macro #endif The problem might be that the macro will call other macros - dsi knocking out one actually might mean a while chain of mac...
by mnfisher
Sun Jul 06, 2025 6:48 am
Forum: General
Topic: Advertencia de posible desbordamiento de pila (stack overflow) al usar interrupciones en PIC16F876A
Replies: 2
Views: 290

Re: Advertencia de posible desbordamiento de pila (stack overflow) al usar interrupciones en PIC16F876A

Interrupt routines should (always) be short and as quick as possible - usually not calling other macros, but certainly not calling things such as displaying data. If your interrupt is something like: time=time+1 If time = 405 Flag = true time=0 Then it is probably not the source of the issue. Do you...
by mnfisher
Sat Jul 05, 2025 7:30 pm
Forum: Tips & Tricks
Topic: PIC16F18877 Drag and Drop board. Programming made easy
Replies: 2
Views: 7887

Re: PIC16F18877 Drag and Drop board. Programming made easy

Let us know how it goes. Just looking - for the second use case you'll need to change the default destination (on my machine it is k:\ ) t he code still has a backup folder (I modified some 'backup' code) The board is neat - having just fried several chips - I like USB power solutions more and more....
by mnfisher
Wed Jul 02, 2025 5:32 pm
Forum: User Components
Topic: Max7219 dot matrix 8x8
Replies: 11
Views: 10586

Re: Max7219 dot matrix 8x8

Hopefully it works for you now. You'll need to set osccon for your required clock etc. You might need to adjust the speed in properties too - if FOsc/4 doesn't work try FOsc/16 - I found the displays are quite sensitive to the quality of the wiring - use short good quality jumpers if breadboarding t...
by mnfisher
Wed Jul 02, 2025 10:41 am
Forum: User Components
Topic: Max7219 dot matrix 8x8
Replies: 11
Views: 10586

Re: Max7219 dot matrix 8x8

Are you setting the pins in properties (including CS) MAX7219.jpg This should run through some demo routines... I used the 18f252 but should work with others if they sufficient RAM - it uses 8 bytes for each of 16 displays (max allowed as far as I remember) Note also that it doesn't do anything in s...
by mnfisher
Tue Jul 01, 2025 5:55 pm
Forum: General
Topic: ESP32 Bluetooth HID possible?
Replies: 11
Views: 4004

Re: ESP32 Bluetooth HID possible?

... And yes, it would be good if others contributed more - and keep a more dynamic conversation going rather than getting an answer and then disappearing....

Not sure how to encourage that though - maybe small prizes for 'project of the month' ?
by mnfisher
Tue Jul 01, 2025 1:53 pm
Forum: General
Topic: ESP32 Bluetooth HID possible?
Replies: 11
Views: 4004

Re: ESP32 Bluetooth HID possible?

Blushing slightly - and I agree with Steve, there is a good community and people will help where possible. It's one of the strengths of flowcode is having a friendly / helpful user base. Steve, Ben and Martin do a great job (one place I worked the boss shouted 'Tell him I died' when one customer ran...