Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
toerb
flow3r firmware
Commits
78060419
Commit
78060419
authored
1 year ago
by
schneider
Browse files
Options
Downloads
Patches
Plain Diff
recovery: disable external RAM
parent
0cbdb14c
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
components/st3m/st3m_gfx.h
+6
-0
6 additions, 0 deletions
components/st3m/st3m_gfx.h
recovery/sdkconfig.defaults
+0
-7
0 additions, 7 deletions
recovery/sdkconfig.defaults
with
6 additions
and
7 deletions
components/st3m/st3m_gfx.h
+
6
−
0
View file @
78060419
...
@@ -9,7 +9,13 @@
...
@@ -9,7 +9,13 @@
// Each buffer takes ~116kB SPIRAM. While one framebuffer is being blitted, the
// Each buffer takes ~116kB SPIRAM. While one framebuffer is being blitted, the
// other one is being written to by the rasterizer.
// other one is being written to by the rasterizer.
#if defined(CONFIG_FLOW3R_CTX_FLAVOUR_FULL)
#define ST3M_GFX_NBUFFERS 2
#define ST3M_GFX_NBUFFERS 2
#else
// Reduce frame buffer count for the bootloader so they fit inside internal RAM
#define ST3M_GFX_NBUFFERS 1
#endif
// More ctx drawlists than buffers so that micropython doesn't get starved when
// More ctx drawlists than buffers so that micropython doesn't get starved when
// pipeline runs in lockstep.
// pipeline runs in lockstep.
#define ST3M_GFX_NCTX 2
#define ST3M_GFX_NCTX 2
...
...
This diff is collapsed.
Click to expand it.
recovery/sdkconfig.defaults
+
0
−
7
View file @
78060419
...
@@ -8,13 +8,6 @@ CONFIG_PARTITION_TABLE_CUSTOM=y
...
@@ -8,13 +8,6 @@ CONFIG_PARTITION_TABLE_CUSTOM=y
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
CONFIG_COMPILER_OPTIMIZATION_PERF=y
CONFIG_COMPILER_OPTIMIZATION_PERF=y
CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT=y
CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT=y
CONFIG_SPIRAM=y
CONFIG_SPIRAM_MODE_OCT=y
CONFIG_SPIRAM_TYPE_ESPPSRAM64=y
CONFIG_SPIRAM_SPEED_80M=y
CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP=y
CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=65536
CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB=y
CONFIG_ESP32S3_INSTRUCTION_CACHE_32KB=y
CONFIG_ESP32S3_DATA_CACHE_64KB=y
CONFIG_ESP32S3_DATA_CACHE_64KB=y
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment