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
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
flow3r
flow3r firmware
Merge requests
!168
Construct gr33nhouse
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Construct gr33nhouse
anon/appstore
into
main
Overview
1
Commits
16
Pipelines
4
Changes
22
Merged
Anon
requested to merge
anon/appstore
into
main
1 year ago
Overview
1
Commits
16
Pipelines
4
Changes
20
Expand
0
0
Merge request reports
Compare
version 1
version 3
b5628ee8
1 year ago
version 2
b5ce666f
1 year ago
version 1
272315f7
1 year ago
main (base)
and
latest version
latest version
0076f23c
16 commits,
1 year ago
version 3
b5628ee8
16 commits,
1 year ago
version 2
b5ce666f
14 commits,
1 year ago
version 1
272315f7
14 commits,
1 year ago
Show latest version
20 files
+
164
−
46
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
Search (e.g. *.vue) (Ctrl+P)
components/st3m/st3m_console.c
+
1
−
11
Options
@@ -145,16 +145,6 @@ void st3m_gfx_splash(const char *c);
// Called by st3m_usb_cdc when it has the opportunity to send some data to the
// host.
size_t
st3m_console_cdc_on_txpoll
(
uint8_t
*
buffer
,
size_t
bufsize
)
{
// I have no idea why this is needed, but it is. Otherwise a large backlog
// of data cuases the IN endpoint to get stuck.
//
// I've spend three days debugging this.
//
// No, I'm not fine. Thanks for asking, though. I appreciate it.
if
(
bufsize
>
0
)
{
bufsize
-=
1
;
}
int64_t
now
=
esp_timer_get_time
();
xSemaphoreTake
(
_state
.
mu
,
portMAX_DELAY
);
@@ -400,4 +390,4 @@ static esp_vfs_t _vfs = {
.
open
=
&
_console_open
,
.
read
=
&
_console_read
,
.
write
=
&
_console_write
,
};
\ No newline at end of file
};
Loading