Search found 12 matches

by cjsm74x
Sat Feb 03, 2018 9:42 pm
Forum: Showcase
Topic: I2S-parallel example: Drive a 64x32 display
Replies: 61
Views: 280414

Re: I2S-parallel example: Drive a 64x32 display

TheNitek wrote:Unfortunately the OSH project by BirdTechstep seems to be gone. Is the PCB available somewhere else?
It's not gone:
https://oshpark.com/profiles/BIRD-TEHCSTEP
by cjsm74x
Sat Sep 23, 2017 1:58 am
Forum: Hardware
Topic: Cannot wakeup from deepsleep
Replies: 2
Views: 5509

Re: Cannot wakeup from deepsleep

Same issue here with the ulp_adc example. The module just refuses to wake up. Also note the weird XTAL warning... ets Jun 8 2016 00:22:57 rst:0x1 (POWERON_RESET),boot:0x33 (SPI_FAST_FLASH_BOOT) configsip: 0, SPIWP:0xee clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 mode:DIO,...
by cjsm74x
Wed Sep 13, 2017 7:42 pm
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 784138

Re: What would you like to see in The Next Chip?

ESP_Sprite wrote: - Hardware accelerated graphics: What do you have in mind with that? Can you give us an use case or two?
It would be nice if we could do these things as easily:
Design: https://www.youtube.com/watch?v=PL3enedXTs4
Interaction: https://www.youtube.com/watch?v=QcKX_Pc6ldU
by cjsm74x
Tue Aug 22, 2017 12:49 am
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 784138

Re: What would you like to see in The Next Chip?

Hardware accelerated graphics (like STM32 for example)
by cjsm74x
Thu Jun 08, 2017 2:44 pm
Forum: General Discussion
Topic: [discovered] someone know what comes here?
Replies: 3
Views: 6270

Re: [discovered] someone know what comes here?

My guess would be the esp32 version of the esp8285. The blue thing looks like a memory chip. Let's hope it is 4MB (probably not).
by cjsm74x
Tue May 02, 2017 1:49 am
Forum: General Discussion
Topic: Urgent Need for Pulse Width Measurement, Register/Hardware Descriptions Would Work
Replies: 13
Views: 25583

Re: Urgent Need for Pulse Width Measurement, Register/Hardware Descriptions Would Work

In components/driver/include/driver/rmt.h I see this line:

Code: Select all

rmt_rx.rx_config.idle_threshold = 0xffff;
Is 65.535 the upper limit of the idle threshold?
by cjsm74x
Thu Mar 23, 2017 6:15 am
Forum: General Discussion
Topic: Getting an error while receive a data continously through uart interrupt
Replies: 1
Views: 4649

Re: Getting an error while receive a data continously through uart interrupt

Edit: after taking a better look at the code and the actual error, I think the problem is with this line inside test_my_uart uint8_t* data = (uint8_t*) malloc(BUF_SIZE); You are using malloc() without a free() when done. Try to test if allocating memory actually succeeds. (if data == null -> out off...
by cjsm74x
Thu Mar 02, 2017 9:33 pm
Forum: ESP-IDF
Topic: Compiling openocd-esp32 on Raspberry Pi
Replies: 7
Views: 11716

Re: Compiling openocd-esp32 on Raspberry Pi

I am currently using just the 'default' ms-vscode.cpptools. Maybe I just don't know what I am missing out on since my previous c experience is limited to the Arduino IDE. :oops:
by cjsm74x
Thu Mar 02, 2017 8:33 am
Forum: ESP-IDF
Topic: Compiling openocd-esp32 on Raspberry Pi
Replies: 7
Views: 11716

Re: Compiling openocd-esp32 on Raspberry Pi

Oke, I adjusted the esp32.cfg file and OpenOCD is happy now. Using the Pi-Zero as an RNDIS/Ethernet Gadget, I can now run debug commands from Visual Studio Code on my W10 laptop. Thanks for the help!
by cjsm74x
Wed Mar 01, 2017 5:55 am
Forum: ESP-IDF
Topic: Compiling openocd-esp32 on Raspberry Pi
Replies: 7
Views: 11716

Re: Compiling openocd-esp32 on Raspberry Pi

I changed the '__CLANG__' code in rtos_freertos_stackings.c to get it to compile with GCC. Unfortunately, after compilation I am running into the same problem as bbx10node in the original topic . The output is 100% consistent after several tries. Open On-Chip Debugger 0.10.0-dev-g90071eb-dirty (2017...