14 Commits

Author SHA1 Message Date
jonny_jr9
573f0779fe Merge branch 'dev' into encoder
Continue working on encoder, get latest version
2024-02-12 13:04:14 +01:00
jonny_jr9
b6fd16eb2a Patch V2.1-board-motorctl to work with new common code
Changes to outsourced motorctl code made configuration
of currently unused board-motorctl from V2.1 incompatible
-> patch config
2023-09-13 15:38:40 +02:00
jonny_jr9
169c809870 Add doc folder, Update gitignore, Add sdkconfigs 2023-09-13 13:59:30 +02:00
jonny_jr9
f76db1d9bc Outsource http, joystick to common/ and react-app to root
Same reason as before commit
Note: some changes to http were necessary due to global object
- untested!

Also remove unneded duplicate components folder
2023-09-07 12:59:15 +02:00
jonny_jr9
881f0827d2 Add encoder lib; Custom task, init - functional
currently handles encoder connected to pins configured in encoder.hpp
and receives and logs all available events in encoder task
Works as expected

TODO: migrate with previous implementation of commands in button.cpp
2023-08-31 12:22:13 +02:00
jonny_jr9
d25f8cd381 Control: Rework button functionality - standalone
- re-enable button functionality
- make button independent of controlledmotor objects
- disable 2x eject support command
- disable 8x toggle fading command
2023-08-30 20:09:19 +02:00
jonny_jr9
455b6f0456 Control: Rework timeout to work standalone (untested)
rework and enable timeout feature to work independent of handledmotor
object now uses generated commands instead of acutal motor duty
not testet yet
2023-08-30 19:53:40 +02:00
jonny_jr9
446c246f43 Add message framing (start, end, escape bytes) to UART
Same functionality as previous commit. But way more stable and clean.
Previous proof of concept approach had issues with random partial or
too large messages due to time based method
Rework send and receive functions to work more stable
- send: encode data with frame (start, end byte)
- receive: read each byte one after the other, assemble message,
  handle actual data in handle function
- add semaphore to write operation to prevent parallel write of
  different data when called from other tasks
2023-08-30 18:17:20 +02:00
jonny_jr9
1e544613ee send, receive, apply motorCommands works (proof of concept); add timeout
- board_control successfully sends motor commands to board_motorctl
- board_motorctl receives and applies motor commands
note: control pcb currently switches to HTTP mode after startup for testing
with data from ui

- partially commented in code that has to be reworked
- control: send commands via uart instead of to motor objects
- board motorctl handled motor: add timeout when no target data
  received (e.g. control pcb offline / uart bugged)
- board motorctl uart: receive motorCommands_t struct and apply data to
  target state of handled motors
- types: fix issue with global motorstateStr variable
2023-08-30 09:01:44 +02:00
jonny_jr9
59a4f8c13f Fix broken http mode (crash at init)
revert changes from previous commit in dev
2023-08-30 09:01:31 +02:00
jonny_jr9
3722b0af74 Add uart templates, send and receive tasks with templates work
both boards compile and send/receive example data using new templates in
common uart code
common/uart_common.hpp
2023-08-30 09:01:31 +02:00
jonny_jr9
76e8bac113 2 boards: split code, outsource common, remove duplicate files
- outsoruce common files and separate common types from source files (new
  common/types.hpp)
- split source files to 2 board folders (relevant only, no duplicate)
- currently boards compile successfull but not functional at all
- comment out currently incompatible code
2023-08-30 09:01:13 +02:00
jonny_jr9
8ef71082dc Add uart test - send and receive struct works
board_control currently sends a scruct with incrementing values
board_motorctl receives the struct and logs it

also test code for sending, receiving and returning single value
2023-08-28 16:35:58 +02:00
jonny_jr9
b03baa4687 Change folder structure (multiple boards)
- add second pcb board_control, currently copy of previous board
- not enough pins -> board_control handle ui send motorcommands via uart
  board_motorctl handle motors
2023-08-28 11:15:06 +02:00