how can we swap iram from core 1 and iram from core 1?
can we switch just in time in esp31B cores on / off ?
can we set CPU each core's , each different or the core's are Twins clocked 160MHz and the share to each 80 MHz?
can we set overclocking to 200 MHz by code itself or is this fixed?
( no hurry )
best wishes
rudi
btw - verry stable the esp31B
and fast. but need watchdog function now.
http://esp32.com/viewtopic.php?f=13&p=383#p383[/quote]
@Jeroen
nice!...
have you little info about the processing in this ?
Code: Select all
..
//These are the arrays we store in the app cpu IRAM. We don't use the app
//processor, so we can freely use its IRAM for other purposes.
typedef struct {
unsigned char videodata[256*192];
unsigned char sram[0x8000];
} AppIramData;
AppIramData *appIramData=(AppIramData*)0x3ffa8000;
..