Search found 45 matches

by MickPF
Mon Jun 27, 2022 12:49 pm
Forum: IDEs for ESP-IDF
Topic: Can not get running the debugging with "Espressif IDF plugins for Eclipse"
Replies: 4
Views: 4651

Re: Can not get running the debugging with "Espressif IDF plugins for Eclipse"

Hello, When I try to install these two of three modules/extensions ("Embedded C/C++ Core" and "Embedded C/C++ GDB JTAG Debugging"), I get the message that newer versions are already installed! Then what means this misleading message that these modules are to be installed! A few days ago I noticed th...
by MickPF
Sun Jun 26, 2022 1:23 pm
Forum: IDEs for ESP-IDF
Topic: Can not get running the debugging with "Espressif IDF plugins for Eclipse"
Replies: 4
Views: 4651

Can not get running the debugging with "Espressif IDF plugins for Eclipse"

Hello, I've got some problems to get running the debugging with Eclipse and the "Espressif IDF plugins for Eclipse"! I use ESP-IDF 4.4.1 with the board ESP32-S3-DevKitC-1 and the JTAG adapter ESP-Prog under Ubuntu 22.04. I've installed the "Eclipse IDE for Embedded C/C++ Developers" (ver. 2022-06) a...
by MickPF
Fri Jun 17, 2022 6:31 pm
Forum: ESP-IDF
Topic: ESP-IDF 4.4.1: A question about and a possible problem with data storage classes
Replies: 2
Views: 1316

Re: ESP-IDF 4.4.1: A question about and a possible problem with data storage classes

Hello gtjoseph,

I use gcc-12.1 under openSUSE Tumbleweed without passing any special options to the compiler.

Many thanks for your help, your suggestion works.

Kind Regards,
Michael
by MickPF
Fri Jun 17, 2022 12:43 pm
Forum: ESP-IDF
Topic: ESP-IDF 4.4.1: A question about and a possible problem with data storage classes
Replies: 2
Views: 1316

ESP-IDF 4.4.1: A question about and a possible problem with data storage classes

Hello, Does the gcc of the ESP-IDF store different storage classes in different address spaces? Here are the relevant code fragments: static const char *name_primitive = "Primitive"; static const char *name_date = "Date"; static const char *name_time = "Time"; static const char *name_sensor_value = ...
by MickPF
Thu Dec 23, 2021 3:25 pm
Forum: Sample Code
Topic: Sinus Signal Generator from 18Hz to 250kHz
Replies: 9
Views: 67473

Re: Sinus Signal Generator from 18Hz to 250kHz

Hello, Although I have been programming with ESP-IDF as a hobby for years, I have not yet dealt with the ESP32 registers at all. In the context of this code, I don't understand why it is not possible to set the amplitude by calling "dac_output_voltage". I modified this code for my purposes, but I ca...
by MickPF
Fri Oct 29, 2021 8:04 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF Eclipse Plugin incompatible with Eclipse Embedded CDT IDE 2021-09
Replies: 1
Views: 6208

ESP-IDF Eclipse Plugin incompatible with Eclipse Embedded CDT IDE 2021-09

Hello, I use openSUSE Tumbleweed (actual updates) and already working ESP-IDF 4.3.1. All requirements for the installation of the plugin have been met. I try to install Eclipse Embedded CDT 2021-09 and the ESP-IDF Eclipse plugin from scratch following instructions at https://github.com/espressif/idf...
by MickPF
Sun Jul 18, 2021 3:23 pm
Forum: Hardware
Topic: Problem using ESP32-S2-Saola-1R with JTAG-Adapter
Replies: 1
Views: 2260

Re: Problem using ESP32-S2-Saola-1R with JTAG-Adapter

A small addition/correction to my problem description: When I use PuTTY on the "/dev/ttyUSB1" and press the reset button on the JTAG adapter, I'll get the expected output: ESP-ROM:esp32s2-rc4-20191025 Build:Oct 25 2019 rst:0x1 (POWERON),boot:0x8 (SPI_FAST_FLASH_BOOT) SPIWP:0xee mode:DIO, clock div:1...
by MickPF
Sun Jul 18, 2021 8:47 am
Forum: Hardware
Topic: Problem using ESP32-S2-Saola-1R with JTAG-Adapter
Replies: 1
Views: 2260

Problem using ESP32-S2-Saola-1R with JTAG-Adapter

Hello, I'm trying to use the same JTAG adapter (see picture in the attachment), which I used with ESP32 without any problems (connected only via the USB connector from the JTAG adapter), with the ESP32-S2 (ESP32-S2-Saola-1R board) and it doesn't work at all. I connected them as following: Saola Boar...
by MickPF
Thu Jul 08, 2021 1:48 pm
Forum: ESP-IDF
Topic: How to prevent linking ALL libraries in ESP-IDF for ESP32-S2?
Replies: 3
Views: 3707

Re: How to prevent linking ALL libraries in ESP-IDF for ESP32-S2?

By the way:

Thank you for your answer!

I didn't know anything about this limit before, but I already figured it out.

Thanks
by MickPF
Thu Jul 08, 2021 1:39 pm
Forum: ESP-IDF
Topic: How to prevent linking ALL libraries in ESP-IDF for ESP32-S2?
Replies: 3
Views: 3707

Re: How to prevent linking ALL libraries in ESP-IDF for ESP32-S2?

I understand... I had this problem already on the ESP32 with some large static data and solved it by using a fatfs partition on the flash and loading/copying this data first from a SD card to the flash if it is inserted. I pass through these data from the flash to an EVE display via SPI. All things ...