Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CyanLight
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fxk8y
CyanLight
Commits
f4e115e1
Commit
f4e115e1
authored
3 years ago
by
fxk8y
Browse files
Options
Downloads
Patches
Plain Diff
Moar CyanBus development
parent
c8754813
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CLC-qthing/SiliconTorch/CyanBus.cpp
+19
-9
19 additions, 9 deletions
CLC-qthing/SiliconTorch/CyanBus.cpp
CLC-qthing/SiliconTorch/CyanBus.hpp
+7
-0
7 additions, 0 deletions
CLC-qthing/SiliconTorch/CyanBus.hpp
CLC-qthing/device_main.cpp
+7
-3
7 additions, 3 deletions
CLC-qthing/device_main.cpp
with
33 additions
and
12 deletions
CLC-qthing/SiliconTorch/CyanBus.cpp
+
19
−
9
View file @
f4e115e1
...
...
@@ -9,6 +9,7 @@
#include
"esp_log.h"
#include
"driver/gpio.h"
#include
"driver/uart.h"
#include
"freertos/FreeRTOS.h"
#include
"freertos/queue.h"
// project specific
...
...
@@ -22,15 +23,15 @@
static
const
char
*
TAG
=
"CyanBus"
;
// This leads to ~54 P/s @ 2 MBaud at 100% load
// TODO: Make configurable?!
const
uint32_t
CyanBusMTU
=
4096
;
namespace
SiliconTorch
{
namespace
CyanBus
{
// This leads to ~54 P/s @ 2 MBaud at 100% load
const
uint32_t
MTU
=
4096
;
const
uint8_t
*
const
HEADER
=
(
const
uint8_t
*
)
"fxCyan"
;
CyanBus
::
CyanBus
(
uint8_t
tx
,
uint8_t
rx
,
uint8_t
de
,
uint8_t
re
,
uint32_t
baudRate
,
uint8_t
uartChannel
)
:
tx
(
tx
),
rx
(
rx
),
de
(
de
),
re
(
re
),
uartChannel
(
uartChannel
)
{
...
...
@@ -74,7 +75,7 @@ namespace SiliconTorch {
uart_port_t
_ch
=
(
uart_port_t
)
uartChannel
;
uart_driver_install
(
_ch
,
CyanBusMTU
,
0
,
0
,
&
uartEvQ
,
0
);
uart_driver_install
(
_ch
,
MTU
*
2
,
0
,
32
,
&
uartEvQ
,
0
);
// txBuf = 0; queue size = 32; TODO: evaluate!!!
uart_param_config
(
_ch
,
&
uartConfig
);
uart_set_pin
(
_ch
,
tx
,
rx
,
UART_PIN_NO_CHANGE
,
UART_PIN_NO_CHANGE
);
uart_set_mode
(
_ch
,
UART_MODE_UART
);
...
...
@@ -85,12 +86,21 @@ namespace SiliconTorch {
rxEN
(
true
);
// readerTaskHandle = new SiliconTorch::Util::LambdaTask([&](){ readerTask(); });
readerTaskHandle
=
new
SiliconTorch
::
Util
::
LambdaTask
([
&
](){
readerTask
();
});
}
void
CyanBus
::
readerTask
()
{
// const uint8_t* header = (const uint8_t*)"fxCyan";
uart_event_t
event
;
uint32_t
bufLEN
=
MTU
*
1.2
;
uint8_t
*
buffer
=
new
uint8_t
[
bufLEN
];
uint8_t
*
bufPTR
=
buffer
;
ESP_LOGW
(
TAG
,
"bufLEN = %d BufferSize[MTU * 1.2] = %d"
,
bufLEN
,
(
int
)
sizeof
(
buffer
));
}
...
...
This diff is collapsed.
Click to expand it.
CLC-qthing/SiliconTorch/CyanBus.hpp
+
7
−
0
View file @
f4e115e1
...
...
@@ -6,6 +6,7 @@
#include
<functional>
// ESP32 specific
#include
"freertos/FreeRTOS.h"
#include
"freertos/queue.h"
// project specific
...
...
@@ -16,6 +17,12 @@ namespace SiliconTorch {
namespace
CyanBus
{
// CyanBus payload MTU
extern
const
uint32_t
MTU
;
// CyanBus envelope header
extern
const
uint8_t
*
const
HEADER
;
class
CyanBus
{
public:
CyanBus
(
uint8_t
tx
,
uint8_t
rx
,
uint8_t
de
,
uint8_t
re
,
uint32_t
baudRate
=
115200
,
uint8_t
uartChannel
=
1
);
...
...
This diff is collapsed.
Click to expand it.
CLC-qthing/device_main.cpp
+
7
−
3
View file @
f4e115e1
...
...
@@ -9,7 +9,6 @@
#include
"CyanLight.hpp"
#include
"SiliconTorch/RS485.hpp"
#include
"SiliconTorch/CyanBus.hpp"
...
...
@@ -20,10 +19,15 @@ CyanLight::CyanLightControl* ctrl;
void
device_main
()
{
SiliconTorch
::
Impl
::
RS485
rs485
(
25
,
21
,
22
,
23
)
;
SiliconTorch
::
CyanBus
::
CyanBus
cyanBus
(
rs485
)
;
uint8_t
tx
=
0
;
uint8_t
rx
=
0
;
uint8_t
de
=
0
;
uint8_t
re
=
0
;
SiliconTorch
::
CyanBus
::
CyanBus
cyanBus
(
tx
,
rx
,
de
,
re
);
// TODO: ???
...
...
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