Search found 8 matches

by mseerig
Thu Jul 20, 2017 7:57 am
Forum: ESP-IDF
Topic: debug output on uart[1]
Replies: 8
Views: 13458

Re: debug output on uart[1]

There is everything in standard settings:

CONFIG_CONSOLE_UART_DEFAULT=y
# CONFIG_CONSOLE_UART_CUSTOM is not set
# CONFIG_CONSOLE_UART_NONE is not set
CONFIG_CONSOLE_UART_NUM=0
CONFIG_CONSOLE_UART_BAUDRATE=115200
by mseerig
Mon Jul 17, 2017 12:37 pm
Forum: ESP-IDF
Topic: debug output on uart[1]
Replies: 8
Views: 13458

Re: debug output on uart[1]

Yes, I see the whole debug output on my UART[1]. It starts with "(2264) cpu start: starting.)".. That is, what I can trigger. Unforchenetly, I don't know how to trigger more data in single mode... Here is my UART init code: UART::UART(const UART_InitTypeDef* uart_conf) { //this->num = DEFAULT_UART_n...
by mseerig
Mon Jul 17, 2017 8:11 am
Forum: ESP-IDF
Topic: debug output on uart[1]
Replies: 8
Views: 13458

Re: debug output on uart[1]

Ok, first of all, my uart routine is something like this: (please, don't be confused about my c++ code) UART_InitTypeDef uart_init; uart_init.num = UART_NUM_1; uart_init.baud_rate = 57600; uart_init.data_bits = UART_DATA_8_BITS; uart_init.parity = UART_PARITY_DISABLE; uart_init.stop_bits = UART_STOP...
by mseerig
Mon Jul 17, 2017 6:36 am
Forum: ESP-IDF
Topic: debug output on uart[1]
Replies: 8
Views: 13458

Re: debug output on uart[1]

Oh, sorry! :D
I'm using the current esp-idf.
by mseerig
Fri Jul 14, 2017 2:44 pm
Forum: ESP-IDF
Topic: debug output on uart[1]
Replies: 8
Views: 13458

debug output on uart[1]

Hi,
I am a little bit confused, why I have a debug output on my uart[1].
As far as I know, the generic debug output is at uart[0], right?
Is there a way to disable the debug output only at uart[1]?

Thank you in advance!
by mseerig
Tue Apr 18, 2017 7:05 am
Forum: ESP-IDF
Topic: SDMMC - different SPI Pins
Replies: 4
Views: 9944

Re: SDMMC - different SPI Pins

We have the driver for SD cards in SPI mode in development, this driver uses SPI peripheral instead.
That's are good news! ;)
Ironically, I got a running SD Card with the properties:

Code: Select all

.flags = SDMMC_HOST_FLAG_SPI

Is this currently not running under SPI? ..it seamed that it is a SPI.. :shock:
by mseerig
Tue Apr 11, 2017 11:28 am
Forum: ESP-IDF
Topic: SDMMC - different SPI Pins
Replies: 4
Views: 9944

SDMMC - different SPI Pins

Hey, since a few hours, I'm looking through the esp-idf for a chance to change the native SPI Pins. ( GPIO4 -> GPIO13 / GPIO2 -> GPIO12 ) Normally, it should be possible to declare own SPI Pins like in the SPI master example. For example: "components/driver/sdmmc_host.c" ... There are nothing writte...
by mseerig
Thu Feb 23, 2017 11:25 am
Forum: Hardware
Topic: External Flash dosen't answer - get flash id error
Replies: 1
Views: 6888

External Flash dosen't answer - get flash id error

Since a few days, I have a problem with the external SPI Flash. I tried to design a esp32 based board for my solutions and added the W25Q32JV SPI Flash tool the circuit (link below). Now there comes a "get flash id error" while downloading the firmeare although the SPI signals looks pretty clean and...