16 Commits

Author SHA1 Message Date
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_l480
69a421a924 Outsource speedsensor, Display: show speed
- move speedsensor files from motorctl pcb to common
- single pcb create and configure global speedsensor objects
- display: create fast slow veryslow loop
  - clear display every 30s
  - show speed in rpm and km/h
  NOTE: speedsensor needs fix, direction unreliable
2023-09-12 16:00:20 +02:00
jonny_l480
364172f69c Merge branch 'measure-speed' into display 2023-09-12 11:59:57 +02:00
jonny_jr9
13b896accb Outsource currentsensor, motorctl, motordrivers to common/
since board_single uses mostly the same code as board_control and
board_motorctl several files are outsorced to common folder to prevent
dupliate code and different versions
2023-09-07 12:30:22 +02:00
jonny_jr9
a3257e89ee Add speedSensor class - functional
successfully read rotational speed and direction using encoder disk and
optical sensor
custom implementation of incremental encoder using gpio edge interrupt
2023-09-06 21:15:44 +02:00
jonny_jr9
57acaa0080 Disable brake-test 2023-09-05 21:51:43 +02:00
jonny_jr9
8c7f05134c Fix Bug brake not working at all
BRAKE state was not possible with previous state
now IDLE is not forced when duty 0
Also adjust some logging
2023-09-05 09:46:53 +02:00
jonny_jr9
3014808d5a Add test for new brake feature
Repeatedly apply sequence of pre-defined motor commands in main function
2023-09-04 21:58:36 +02:00
jonny_jr9
fcecd930d3 Add brake-relay support to motordriver
[untested]
Turn on brake relays in BRAKE state
Also wait certain time for relays to switch before shorting the driver
Add config option for brake relay pin
Initialize pin in constructor
2023-09-04 21:51:15 +02:00
jonny_jr9
0a1f941de0 Update configs according to new pin assignment
current config of each board now matches pin assignment
2023-09-04 21:50:42 +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
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