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
Search found 8 matches
- Thu Jul 20, 2017 7:57 am
- Forum: ESP-IDF
- Topic: debug output on uart[1]
- Replies: 8
- Views: 14666
- Mon Jul 17, 2017 12:37 pm
- Forum: ESP-IDF
- Topic: debug output on uart[1]
- Replies: 8
- Views: 14666
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...
- Mon Jul 17, 2017 8:11 am
- Forum: ESP-IDF
- Topic: debug output on uart[1]
- Replies: 8
- Views: 14666
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...
- Mon Jul 17, 2017 6:36 am
- Forum: ESP-IDF
- Topic: debug output on uart[1]
- Replies: 8
- Views: 14666
Re: debug output on uart[1]
Oh, sorry!
I'm using the current esp-idf.
I'm using the current esp-idf.
- Fri Jul 14, 2017 2:44 pm
- Forum: ESP-IDF
- Topic: debug output on uart[1]
- Replies: 8
- Views: 14666
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!
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!
- Tue Apr 18, 2017 7:05 am
- Forum: ESP-IDF
- Topic: SDMMC - different SPI Pins
- Replies: 4
- Views: 10879
Re: SDMMC - different SPI Pins
That's are good news!We have the driver for SD cards in SPI mode in development, this driver uses SPI peripheral instead.
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..
- Tue Apr 11, 2017 11:28 am
- Forum: ESP-IDF
- Topic: SDMMC - different SPI Pins
- Replies: 4
- Views: 10879
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...
- Thu Feb 23, 2017 11:25 am
- Forum: Hardware
- Topic: External Flash dosen't answer - get flash id error
- Replies: 1
- Views: 7552
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...