Search found 27 matches

by tecdroid
Wed Aug 17, 2022 10:56 am
Forum: ESP32 boards
Topic: compiling for 8MB PSRAM
Replies: 2
Views: 13288

Re: compiling for 8MB PSRAM

Hi, thank you but doesn't this just set flash to 8M? What I need is 4MB flash and 8MB RAM edit: just found out that ESP32 only can allocate 4M of RAM directly. The rest is available via another kind of memory allocation or via bank switching (as far as I understand) so either, bank switching can be ...
by tecdroid
Wed Aug 17, 2022 6:44 am
Forum: ESP32 boards
Topic: compiling for 8MB PSRAM
Replies: 2
Views: 13288

compiling for 8MB PSRAM

Hi, I'm using an ESP32-WROVER-E which has 4MB Flash and 8MB PSRAM. Since GENERIC_PSRAM only utilizes 4MB of RAM i wonder what to put in my mpconfigboard.h to enhance this. Is there anyone who can tell? Edit: Just seen that I was in the wrong tab. The post may be right here but I feel like it should ...
by tecdroid
Wed May 18, 2022 5:21 am
Forum: ESP8266 boards
Topic: Input Pin.value() always zero unless pin switched on.
Replies: 0
Views: 10234

Input Pin.value() always zero unless pin switched on.

Hi there, just not shure if this is normal behaviour.. that's why i ask here before running an issue I just loaded a fresh copy of v1.18 on a d1mini. My goal is to build a simple remote control for my robots and.. it didn't work as expected. My plan is to use pin irqs to send the pins number via soc...
by tecdroid
Sat Mar 12, 2022 9:13 am
Forum: Programs, Libraries and Tools
Topic: Python-only neural network
Replies: 1
Views: 2070

Python-only neural network

Hey there, I recently learned that i was never unable to develop neural networks (looking back to about 10 attempts during the last 20 years) but too stupid to create the right training data... Well, my last attempt is unable to do simple XOR but is able to learn handwritten digits.. The goal is to ...
by tecdroid
Wed Feb 09, 2022 7:01 am
Forum: Raspberry Pi microcontroller boards
Topic: Webrepl missing in arduino rp2040 port
Replies: 1
Views: 1337

Re: Webrepl missing in arduino rp2040 port

i just checked out a completely new clone of mp and it compiled. I recently compiled some stm32.
is it possible that compiling for multiple controllers interfere?
by tecdroid
Tue Feb 08, 2022 4:25 pm
Forum: Raspberry Pi microcontroller boards
Topic: Webrepl missing in arduino rp2040 port
Replies: 1
Views: 1337

Webrepl missing in arduino rp2040 port

Hi, i just mentioned that webrepl isn't on the arduino rp2040 port. since i just had the idea of a boxed robot, i'd like to use webrepl. Sadly, i cannot compile it myself.. linker tells me /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: CMakeFiles/firmware.dir/home/tecdroid/git/micro...
by tecdroid
Wed Feb 02, 2022 5:16 pm
Forum: Development of MicroPython
Topic: accessing list dictionary from C
Replies: 3
Views: 20333

Re: accessing list dictionary from C

wow! this is definitely the documentation i've been looking for. :-D
by tecdroid
Wed Jan 12, 2022 8:08 am
Forum: ESP32 boards
Topic: ESP32 module, wake_on_touch, wake_on_ext1
Replies: 6
Views: 9584

Re: ESP32 module, wake_on_touch, wake_on_ext1

old post, I know..
.. but i was looking for deep sleep mechanisms on esp32 and tried that code (watch one post up)
(in particular, pin 4 pulldown activated, wake_on_ext1 with all high)
directly after machine.deepsleep(), my esp reboots.
does anyone have an idea, why?
by tecdroid
Wed Jan 05, 2022 5:51 pm
Forum: Development of MicroPython
Topic: how to determine needed flash size
Replies: 2
Views: 12678

how to determine needed flash size

hi again, stupid question. How can I determine the size of my compiled micropython to fit it into my flash. standard stm32 only has 90kb of program space left and i wonder if i can resize it a little.. btw: is micropython capable of handling spi flash like AT45DB321E-SHF and how do i tell it to use ...
by tecdroid
Thu Dec 09, 2021 4:27 pm
Forum: Development of MicroPython
Topic: accessing list dictionary from C
Replies: 3
Views: 20333

accessing list dictionary from C

hi there,
I'm just wondering how mp lists and dicts are accessed from within C.
Background is that I want to accelerate some software by implementing native modules which is - to my mind - really an intersting thing but sadly not well described..