Search found 889 matches

by mnfisher
Thu Mar 11, 2021 9:05 pm
Forum: General
Topic: Delays and interrupts
Replies: 2
Views: 2210

Re: Delays and interrupts

Interrupts can occur while a delay is 'running' So Delay 1s - UART Rx interrupt(s) - add chars to circular buffer.... .. Delay finishes - process input.. The delay does (in effect) while (ms < 1000) ms = Getms(); On an interrupt - the processor saves the current context - performs the interrupt code...
by mnfisher
Sun Mar 07, 2021 5:44 pm
Forum: General
Topic: Colour scheme
Replies: 9
Views: 4390

Re: Colour scheme

Ah yes. I was still on the web...

Thanks for that....

Martin
by mnfisher
Sun Mar 07, 2021 4:29 pm
Forum: General
Topic: Colour scheme
Replies: 9
Views: 4390

Re: Colour scheme

? - you got me on that one.. Can't find that 'button' anywhere???

Guess I always did lack style :roll:

Martin
by mnfisher
Sun Mar 07, 2021 1:50 pm
Forum: General
Topic: Colour scheme
Replies: 9
Views: 4390

Re: Colour scheme

Hi Steve,

Click on your name - top right - used control - board preferences - my board style. You can choose 'element ' or prosilver.
Prosilver is a light scheme like the old board..

Martin
by mnfisher
Sat Mar 06, 2021 10:30 pm
Forum: Bug Reports
Topic: Serial port issues & Arduino pro 3.3v
Replies: 3
Views: 2184

Re: Serial port issues & Arduino pro 3.3v

It's strange - I modified: avrc_arduinoA.bat - :ProgFlash @SET AVRDUDEcmd="%~dp0..\bin\avrdude.exe" -p m328p -P%ComPort% -b %BaudRate% -c %2 -D -U flash:w:"%FileName%" @SHIFT @GOTO Send :Config @SET AVRDUDEcmd="%~dp0..\bin\avrdude.exe" -p m328p -P%ComPort% -b %BaudRate% -c %2 -u So I'm forcing a m32...
by mnfisher
Sat Mar 06, 2021 5:43 pm
Forum: Bug Reports
Topic: Serial port issues & Arduino pro 3.3v
Replies: 3
Views: 2184

Serial port issues & Arduino pro 3.3v

So - this is probably related to other issues - but couldn't find the topic :-( If one of the other VCs wants to move this across then please do... I tried to program an Arduino Pro (maybe it's a mini?) 3.3v. This doesn't have a USB port and programming is via a FTDI convertor. Anyway - using the Pr...
by mnfisher
Sat Mar 06, 2021 2:13 pm
Forum: General
Topic: Education Packs
Replies: 2
Views: 1939

Education Packs

I wanted to highlight the education packs at https://www.flowcode.co.uk/education/ - complete, well presented courses on 'embedded internet', 'canbus', 'RFID' amongst others.

What an excellent resource - many thanks to MatrixTSL for making this available.

Martin
by mnfisher
Wed Mar 03, 2021 5:19 pm
Forum: General
Topic: ESP Programming
Replies: 5
Views: 2997

Re: ESP Programming

Thanks Ben,

Mouse wheel - that's great. Now I can read the pin labels... 5v & 3.3v swapped top RHS, VEXT marked as GND pin 4...

#warning "esp_event_loop.h is deprecated, please include esp_event.h instead"


Martin
by mnfisher
Wed Mar 03, 2021 3:29 pm
Forum: General
Topic: ESP Programming
Replies: 5
Views: 2997

Re: ESP Programming

Using CAL SPI - if 'use chip references' is unticked - then, for example, having (Software mode) MOSI = $pin15 gives compilation error (port5 doesn't exist did you mean portA?)

Should there be 2 available channels for SPI?

Martin
by mnfisher
Wed Mar 03, 2021 3:03 pm
Forum: General
Topic: ESP Programming
Replies: 5
Views: 2997

ESP Programming

Just trying to get ESP programming working - and encountered a few things which I'm not sure about.. 1) If the program 'falls' off the end (loop: goto loop) then I get watchdog timer fired - program didn't respond in time - message on the uart. This is if auto clear watchdog is set/not set. It doesn...