Search found 7 matches

by Kampino
Sun Feb 06, 2022 5:14 pm
Forum: ESP-IDF
Topic: UART Echo example in ESP IDF 4.0.1 with UART 1
Replies: 1
Views: 3540

UART Echo example in ESP IDF 4.0.1 with UART 1

Hello,

I use the UART Echo example with ESP IDF 4.0.1 and it looks like the software isn´t receiving anything when I use UART 1.


#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "driver/uart.h"
#include "driver/gpio.h"
#include "sdkconfig.h"
#include "esp_log ...
by Kampino
Mon Nov 29, 2021 9:57 pm
Forum: ESP-IDF
Topic: Where do I find the default analog function for the RTC GPIO?
Replies: 0
Views: 2391

Where do I find the default analog function for the RTC GPIO?

Hi,

I want to dive a little bit deeper into the esp-idf to program the ULP of the ESP32. As a first start I try to implement a simple blinking example for the ULP, but I struggle with the default analog configuration of the RTC pins.

I have checked the Technical Reference Manual ( https://www ...
by Kampino
Wed Nov 03, 2021 4:39 pm
Forum: General Discussion
Topic: Starting ESP32 encryption with esptool.py
Replies: 0
Views: 1675

Starting ESP32 encryption with esptool.py

Hello,

I use a custom programming board to program an ESP32 with a secure bootloader


esptool.py '--port', 'COM14', '--baud', '921600', 'write_flash', '--flash_mode', 'dio', '--flash_freq', '40m', '--flash_size', 'detect', '0x10000', 'hello-world_secure.bin', '0x8000', 'partitions.bin', '0x1000 ...
by Kampino
Wed Sep 29, 2021 7:04 am
Forum: Hardware
Topic: Need help with JTAG on ESP-WROVER-KIT-VE
Replies: 2
Views: 4716

Re: Need help with JTAG on ESP-WROVER-KIT-VE

Hi,

2) I have flashed the application onto the ESP32


MAC: 3c:61:05:4c:32:18
Uploading stub...
Running stub...
Stub running...
Changing baud rate to 921600
Changed.
Configuring flash size...
Auto-detected Flash size: 4MB
Compressed 24704 bytes to 14495...

Writing at 0x00001000... (100 %)
Wrote ...
by Kampino
Tue Sep 28, 2021 8:51 am
Forum: Hardware
Topic: Need help with JTAG on ESP-WROVER-KIT-VE
Replies: 2
Views: 4716

Need help with JTAG on ESP-WROVER-KIT-VE

Hi,

I try to use the JTAG debugger on my ESP-WROVER-KIT-VE in an Arduino and the esp-idf environment with Visual Studio Code and PlatformIO. I wrote a small program to test the debugger:

static void applicationTask(void* p_Parameter)
{
setup();
while(true)
{

TIMERG0.wdt_wprotect = TIMG_WDT ...
by Kampino
Fri Aug 27, 2021 7:53 am
Forum: General Discussion
Topic: How to capture two images in a row with the ESP32 camera driver?
Replies: 0
Views: 1608

How to capture two images in a row with the ESP32 camera driver?

Hello,

I try to capture two images with different light scenarios by using the ESP32 camera driver. My code looks like the following example:


camera_config_t CameraConfig;
...
CameraConfig.fb_count = 2;
esp_camera_init(&CameraConfig);

Image1 = esp_camera_fb_get();
...
Image2 = esp_camera_fb_get ...
by Kampino
Fri Jan 08, 2021 12:28 pm
Forum: ESP32 Arduino
Topic: Using BluFi demo with Arduino
Replies: 0
Views: 3128

Using BluFi demo with Arduino

Hello,

I want to use the BluFi demo in combination with the Arduino framework, so I modify the code:


#include "blufi_demo.h"

static uint8_t UUID[32] = {
/* LSB <--------------------------------------------------------------------------------> MSB */
//first uuid, 16bit, [12],[13] is the value ...

Go to advanced search