Search found 75 matches

by PM-TPI
Mon Dec 13, 2021 3:02 pm
Forum: ESP32 boards
Topic: Partitions-ota.csv change error
Replies: 5
Views: 5373

Re: Partitions-ota.csv change error

So now when I reboot I get... rst:0x1 (POWERON_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT) configsip: 0, SPIWP:0xee clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 mode:DIO, clock div:2 load:0x3fff0030,len:4 load:0x3fff0034,len:5664 ho 0 tail 12 room 4 load:0x40078000,len:12800 lo...
by PM-TPI
Sat Dec 11, 2021 2:13 am
Forum: ESP32 boards
Topic: Partitions-ota.csv change error
Replies: 5
Views: 5373

Re: Partitions-ota.csv change error

Thank You...

I got
>>> gc.mem_free()
73408
Enough to get started with ota but still need to trim mp.
I hoping someone has ideas reguarding...
Minimalistic Bluetooth Scanner...
viewtopic.php?p=63050#p63050

again Thank You !!!
by PM-TPI
Fri Dec 10, 2021 9:43 pm
Forum: ESP32 boards
Topic: Partitions-ota.csv change error
Replies: 5
Views: 5373

Re: Partitions-ota.csv change error

Why such large chunks ? works with... # Name, Type, SubType, Offset, Size, Flags nvs, data, nvs, 0x9000, 0x4000, otadata, data, ota, 0xd000, 0x2000, phy_init, data, phy, 0xf000, 0x1000, ota_0, app, ota_0, 0x10000, 0x190000, ota_1, app, ota_1, 0x1a0000, 0x190000, vfs, data, fat, 0x330000, 0xd0000, B...
by PM-TPI
Fri Dec 10, 2021 8:29 pm
Forum: ESP32 boards
Topic: Partitions-ota.csv change error
Replies: 5
Views: 5373

Partitions-ota.csv change error

Modifyed.... partitions-ota.csv to # Partition table for MicroPython with OTA support using 4MB flash # Notes: the offset of the partition table itself is set in # $IDF_PATH/components/partition_table/Kconfig.projbuild. # Name, Type, SubType, Offset, Size, Flags nvs, data, nvs, 0x9000, 0x4000, otada...
by PM-TPI
Tue Dec 07, 2021 4:06 pm
Forum: ESP32 boards
Topic: Minimalistic Bluetooth Scanner...
Replies: 0
Views: 1807

Minimalistic Bluetooth Scanner...

I am trying to reduce my micropython footprint because I need room for OTA. I need a BLE --scanner function only-- and RSSI and no other services. I saw modbluetooth.c.obj in my build file and it is 410KB, the largest of the .obj files. Realy could use that space !!! Searching github and other place...
by PM-TPI
Sun Dec 05, 2021 12:24 pm
Forum: ESP32 boards
Topic: MP 1.17 + ulab = too big for TinyPICO?
Replies: 3
Views: 4971

Re: MP 1.17 + ulab = too big for TinyPICO?

Using a ESP32 4Mb AND LVGL (lv_micropython v8.1.1-dev) with v1.17 (mp build-GENERIC_SPIRAM) Never had application overflows. Were there changes to the default pattion sizes in mp ? Project build complete. To flash, run this command: .... bootloader @0x001000 23264 ( 5408 remaining) partitions @0x008...
by PM-TPI
Thu Aug 12, 2021 1:21 pm
Forum: Programs, Libraries and Tools
Topic: mpypack: project packup and upload tool for mpy
Replies: 2
Views: 1739

Re: mpypack: project packup and upload tool for mpy

I'm interested in this tool.
Will you be producing a YouTube video to demonstrate its features?

Thanks
by PM-TPI
Thu Jul 01, 2021 5:55 pm
Forum: MicroPython pyboard
Topic: Please could some Pyboard 1.x users try this
Replies: 6
Views: 5533

Re: Please could some Pyboard 1.x users try this

Peter I wish somone would validate your modifacations to the sdcard.py driver. I can confrim that this fix worked for me using a 2GB and 8GB SD Card (amazon crap card), ILI9341 (display driver), and (xpt2046 touch driver). Orginal I had a 2GB sd that had no issues. When I purchase new cards from ama...
by PM-TPI
Fri May 21, 2021 2:11 pm
Forum: ESP32 boards
Topic: WPA2 Enterprise
Replies: 22
Views: 20462

Re: WPA2 Enterprise

Thank you very much for pointing me in the right direction !!!!!!!!!!!!!! Added fix... built... and connected to Enterprise Network. I am using a Raspberry Pi with radius server, hope to test in a more commercial environment. micropython really needs to add this connectivity with all the appropriate...
by PM-TPI
Thu May 20, 2021 9:46 am
Forum: ESP32 boards
Topic: WPA2 Enterprise
Replies: 22
Views: 20462

Re: WPA2 Enterprise

This method allows connecting with EAP-PEAP or EAP-TTLS: client key and certificate are not necessary, only a username and password pair. in file... ports\esp32\modnetwork.c #include "esp_wpa2.h" //then add... //Set up EAP STATIC mp_obj_t esp_seteap(mp_obj_t self_in,mp_obj_t username,mp_obj_t passwo...