Search found 10 matches

by davidbogatec
Tue May 12, 2020 9:06 am
Forum: ESP32 boards
Topic: Debug
Replies: 0
Views: 1189

Debug

I have problems working on different ESP32 boards. Using Upycraft, boards with the same firmware uploaded behave differently. The major problem is that certain board give you a sort of debugging when you run the code, at least the error output is the code line where the error is, some just do not en...
by davidbogatec
Mon Mar 02, 2020 11:19 am
Forum: ESP32 boards
Topic: Build firmware for external spiram
Replies: 6
Views: 3306

Re: Build firmware for external spiram

What is wrong in your opinion?

Thank Jimmo
David
by davidbogatec
Thu Feb 27, 2020 1:24 pm
Forum: ESP32 boards
Topic: Build firmware for external spiram
Replies: 6
Views: 3306

Re: Build firmware for external spiram

Here the info you've requested I am working in linux environment. I am using the same setup, toolchain, to build normal or spiram enabled firmware. I succeed to build the generic firmware but not the spiram. What I do: 1) Download and extract xtensa-esp32-elf-linux64-1.22.0-61-gab8375a-5.2.0.tar.gz ...
by davidbogatec
Thu Feb 27, 2020 10:36 am
Forum: ESP32 boards
Topic: Build firmware for external spiram
Replies: 6
Views: 3306

Re: Build firmware for external spiram

Hi Jimmo, when I try to build it with make BOARD=GENERIC_SPIRAM the build stops with the following output. Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. Building with ESP IDF v3 GEN build-GENERIC_SPIRAM/sdkconfig.h mkdir -p build-GENERIC_SPIRAM/bootloader//home/b...
by davidbogatec
Thu Feb 27, 2020 9:58 am
Forum: ESP32 boards
Topic: Build firmware for external spiram
Replies: 6
Views: 3306

Build firmware for external spiram

I have a problem with building the micropython firmware for generic spiram.
I need to build it for ESP32 VROVER module that has 4 MB of additional spiram and have also to integrate custom C-User module.
How to do? thanks
by davidbogatec
Mon Feb 17, 2020 9:32 am
Forum: ESP32 boards
Topic: Build firmware for external spiram
Replies: 2
Views: 1783

Re: Build firmware for external spiram

Hi Jimmo, thanks for the prompt reply. When i try to build with make board=generic_spiram i have the following error make BOARD=GENERIC_SPIRAM Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. Building with ESP IDF v3 GEN build-GENERIC_SPIRAM/sdkconfig.h mkdir -p bui...
by davidbogatec
Wed Feb 12, 2020 7:29 am
Forum: ESP32 boards
Topic: Build firmware for external spiram
Replies: 2
Views: 1783

Build firmware for external spiram

I need to build a firmware for WROVER with ULAB module and have access to the external SPIRAM. I've managed to flash the firmware with ULAB module, but i don't know how to build a firmware able to access the external ram as the official GENERIC-SPIRAM : esp32spiram-idf3-20191220-v1.12.bin. Any idea?...
by davidbogatec
Wed Feb 12, 2020 7:13 am
Forum: General Discussion and Questions
Topic: Different debugging behavior running codes
Replies: 3
Views: 2104

Different debugging behavior running codes

I have to esp32 boards: - board 1 with espressif esp32-WROOM 32 chip - board 2 with espressif ESP32-WROVER B chip On both the same firmware is uploaded. On both the same code is running with a type error on line 4 (micropython 1 instead of micropython). import machine import micropython micropython1...
by davidbogatec
Wed Feb 05, 2020 8:46 am
Forum: ESP32 boards
Topic: ADXL345 range setting on micropython
Replies: 3
Views: 2560

Re: ADXL345 range setting on micropython

Hi cgglpzy and thanks for your prompt reply. i've insert the suggested lines in the code but nothing happens. Where is the error? from machine import Pin,I2C import math import time device = const(0x53) regAddress = const(0x32) TO_READ = 6 buff = bytearray(6) reg_DATA_FORMAT = const(0x31) class ADXL...
by davidbogatec
Tue Feb 04, 2020 3:33 pm
Forum: ESP32 boards
Topic: ADXL345 range setting on micropython
Replies: 3
Views: 2560

ADXL345 range setting on micropython

I want to set the 16g range of the accelerometer. The default range is 2G. Where I need to specify this in the below code? from machine import Pin,I2C import math import time device = const(0x53) regAddress = const(0x32) TO_READ = 6 buff = bytearray(6) class ADXL345: def __init__(self,i2c,addr=devic...