Search found 165 matches

by bitninja
Fri Oct 15, 2021 11:45 pm
Forum: ESP8266 boards
Topic: How to compile firmware?
Replies: 10
Views: 50741

Re: How to compile firmware?

Here is a doc describing the two problems I ran into in building the ESP_OPEN_SDK... Once that is done, the tools should build and you can move on to building MicroPython... Basically... - one of the source websites is unavailable (to me) (http://isl.gforge.inria.fr/) - and the version of expat need...
by bitninja
Wed Oct 13, 2021 8:56 pm
Forum: ESP8266 boards
Topic: Viable Options To Simplify the Custom Firmware Build Process
Replies: 7
Views: 17134

Re: Viable Options To Simplify the Custom Firmware Build Process

I don't understand the problem this aims to solve. Have you tried building the ESP_OPEN_SDK lately? (https://github.com/pfalcon/esp-open-sdk) It doesn't work. Versions have been updated, files have been moved... it is very difficult... and I've done it many times before! What I am trying to do is m...
by bitninja
Tue Oct 12, 2021 8:46 pm
Forum: Raspberry Pi microcontroller boards
Topic: interest for tiny usb hid integration?
Replies: 3
Views: 2877

Re: interest for tiny usb hid integration?

I would definitely be interested! BTW... check out the GITHUB status on this...

https://github.com/micropython/micropython/issues/6811
by bitninja
Tue Oct 12, 2021 8:34 pm
Forum: ESP8266 boards
Topic: Viable Options To Simplify the Custom Firmware Build Process
Replies: 7
Views: 17134

Re: Viable Options To Simplify the Custom Firmware Build Process

Thanks for the responses! I guess I should narrow down the topic to be more in line with what I was thinking. What I am really looking for is a simple, start with nothing, procedure/application/package that goes something like this... Install small toolset of scripts with maybe a small GUI Download ...
by bitninja
Mon Oct 11, 2021 1:20 pm
Forum: ESP8266 boards
Topic: How to compile firmware?
Replies: 10
Views: 50741

Re: How to compile firmware?

Just so you know, I just went through the documented steps and ran into only two dependency issues breaking the building of the esp_open_sdk toolkit.

I can document all my steps, here if you still need it.

Otherwise, I think I will format some documentation on the process and post somewhere.
by bitninja
Sun Oct 10, 2021 12:47 pm
Forum: ESP8266 boards
Topic: Viable Options To Simplify the Custom Firmware Build Process
Replies: 7
Views: 17134

Viable Options To Simplify the Custom Firmware Build Process

I wanted to tap all the members who have gone through the manual building of MicroPython for the ESP8266. What I am looking for is the best way to build the custom firmware. I am interested in approaches that would make building a custom MicroPython image, not so cumbersome. Anyway, the only approac...
by bitninja
Wed Sep 29, 2021 12:43 am
Forum: ESP8266 boards
Topic: How to compile firmware?
Replies: 10
Views: 50741

Re: How to compile firmware?

Hello, I can certainly understand any frustration you may have at attempting this, but I am glad to see you giving it some effort. Compiling the firmware (and allowing frozen modules and other modifications) is a very important skillset in the MicroPython world... that unfortunately has not been giv...
by bitninja
Sun Aug 29, 2021 11:38 pm
Forum: General Discussion and Questions
Topic: I started a company that teaches MicroPython with an ESP8266!
Replies: 3
Views: 1518

Re: I started a company that teaches MicroPython with an ESP8266!

Very Nice!
I have been contemplating a similar endeavor for a while now so it's nice to see something come to fruition.

Congratulations and the best of luck to you!
by bitninja
Mon Aug 16, 2021 8:59 am
Forum: ESP8266 boards
Topic: New to MicroPython, putty showing garbage chars
Replies: 46
Views: 21568

Re: New to MicroPython, putty showing garbage chars

Ye, I like upyCraft.

Here is a good page on the ESPTOOL which all the apps use to do the dirty work.

https://github.com/espressif/esptool

Especially the Flash Modes on the ESP8266.

Glad you got it solved!
by bitninja
Mon Aug 09, 2021 1:34 am
Forum: ESP8266 boards
Topic: New to MicroPython, putty showing garbage chars
Replies: 46
Views: 21568

Re: New to MicroPython, putty showing garbage chars

Actually, with a 16MB flash size you should also be flashing an extra file called... esp_init_data_default.bin For example... esptool.py -p COM5 -c esp8266 -b 460800 write_flash -fm dio --flash_size=16MB 0x0000 esp8266-v1.16.bin 0xffc000 esp_init_data_default.bin Is what I used to use for a Wemos D1...