Search found 1482 matches

by chipfryer27
Wed Jul 30, 2025 9:11 pm
Forum: General
Topic: Question about communication between two mcu via spi
Replies: 6
Views: 83

Re: Question about communication between two mcu via spi

Hi Martin

With the PIC, could you not use one of the Synchronous Serial Port Interrupts?

Regards
by chipfryer27
Wed Jul 30, 2025 2:38 pm
Forum: General
Topic: how to delete unneeded or old projects?
Replies: 16
Views: 366

Re: how to delete unneeded or old projects?

Hi Martin

No problem on my W1o running Norton. It wasn't initially happy but did allow it.

Regards
by chipfryer27
Tue Jul 29, 2025 9:34 pm
Forum: General
Topic: how to delete unneeded or old projects?
Replies: 16
Views: 366

Re: how to delete unneeded or old projects?

Hi Martin

Don't get me or my email wrong. I completely understand why they both interjected. I know the tedious process to allow a program never been released into the wild and even then used by few (in global terms) permissions.

Just didn't fancy that tonight.

Regards
by chipfryer27
Tue Jul 29, 2025 9:10 pm
Forum: General
Topic: how to delete unneeded or old projects?
Replies: 16
Views: 366

Re: how to delete unneeded or old projects?

Hi Both Defender and Norton got very unhappy (not unexpected) Defender allowed with my consent but Norton decided it should be removed without my consent. It may be quarantined somewhere but as it is late O'clock I've lost interest for the evening. What I did see before Norton did it's worse did loo...
by chipfryer27
Tue Jul 29, 2025 3:30 pm
Forum: General
Topic: how to delete unneeded or old projects?
Replies: 16
Views: 366

Re: how to delete unneeded or old projects?

Hi

Personally speaking, I have found the recent files option to be quite helpful. On occasion I have lost track of the name of the file I was working on, or more likely which folder I stuck it in, and having FC know is a bonus :)

Maybe I should just get better at filing......

Regards
by chipfryer27
Tue Jul 29, 2025 1:05 pm
Forum: General
Topic: Toolchain installation woes
Replies: 3
Views: 81

Re: Toolchain installation woes

Hi Bob I feel your pain..... It is well documented the woes that come with espressif. However last year I did migrate to W11 and had no issue at all, but then that was before espressif changed things. RPi gave no problems. I followed the instructions and also in the WiKi https://www.flowcode.co.uk/w...
by chipfryer27
Sun Jul 27, 2025 6:38 pm
Forum: General
Topic: Error/Warning in the compilation
Replies: 2
Views: 123

Re: Error/Warning in the compilation

Hi

It is usually OK to ignore those warnings as it is just informing you that the interrupt has previously been used elsewhere and therefore you may not get expected results.

Regards
by chipfryer27
Sun Jul 27, 2025 6:34 pm
Forum: General
Topic: Pull-up internas como activarlas?
Replies: 6
Views: 251

Re: Pull-up internas como activarlas?

Hi

Glad you have it working. I too have been caught by names before :)

Regards
by chipfryer27
Sat Jul 26, 2025 11:58 pm
Forum: General
Topic: Pull-up internas como activarlas?
Replies: 6
Views: 251

Re: Pull-up internas como activarlas?

Hi

Bits are 7 - 0 so to set RB7-RB4 it would be 0b11110000

Regards

PS
When setting register bits I find it helpful to use binary but of course you can use hex or decimal if you prefer

0b11110000 = 0xF0 = 240
by chipfryer27
Sat Jul 26, 2025 10:29 pm
Forum: General
Topic: Pull-up internas como activarlas?
Replies: 6
Views: 251

Re: Pullu-up internas como activarlas?

Hi

If you look in the datasheet, section 3.4.2 Weak Pull-Ups, you will find the details of the register you need to set. The register is 8-bits wide for Port B so you can select / set whichever bits you need.

In the C-Code block enter the register name and value (e.g. REG=0b11110000).

Regards