Compare commits

31 Commits
master ... dev

Author SHA1 Message Date
315a0ae7c3 feat(ufmt): add feature 2025-08-16 22:16:00 +04:00
b98aad071f refactor!: add debug func (temp) + remove some delays + refactor bitbang 2025-08-16 22:15:51 +04:00
fee9ff945f feat(ringbuf): stabilize data streaming for ringbuffer 2025-08-16 22:14:57 +04:00
3e0b1a8451 refactor: move implementation to mod.rs 2025-08-10 21:32:20 +04:00
2e1bb877c6 fix: rename feature 2025-08-10 21:29:11 +04:00
6da908db14 my skill issue... 2025-08-10 21:27:11 +04:00
3d11f1382e fix: import ring buffer after fix Cargo.toml of ring-buffer crate 2025-08-10 21:22:25 +04:00
c77d02a7f7 i hate this 2025-08-10 21:18:19 +04:00
89270cb956 fix: add version 2025-08-10 21:04:11 +04:00
b78e62b351 fix: ring-buffer is optional 2025-08-10 21:01:08 +04:00
2efee051ff feat: add RingBuffer as crate feature 2025-08-10 20:57:55 +04:00
ca54784e64 feat(encode): add CRC calculation 2025-08-10 20:57:28 +04:00
71d952dce5 feat(impl): remove RingBuffer implementation 2025-08-10 20:56:14 +04:00
68c1ff13eb feat: remove complex type casting 2025-06-01 18:20:24 +04:00
e915deb1d5 fix: send only bytes written to the buffer instead of the entire buffer 2025-05-27 21:27:11 +04:00
f069c3b4b2 feat(writer): reduce byte transactions (from N to len of buffer) 2025-05-23 17:32:08 +04:00
f43340db30 fix: add re-export 2025-05-22 22:01:35 +04:00
b3aa8ea46a feat(sync): remove synchronization method calls 2025-05-22 21:58:45 +04:00
b72be2fc3b feat(buf): implement SoftSerial traits for HalfDuplexSerial with RingBuffer 2025-05-22 21:52:03 +04:00
7cbbe955bb feat(buf): add ringbuffer structure 2025-05-22 21:51:13 +04:00
14bb705e94 feat: remove redundant loop 2025-04-30 23:03:55 +04:00
096fa7853f fix: revert sync timing 2025-04-30 23:03:42 +04:00
6991e5611e feat: remove SoftSerial trait 2025-04-30 18:08:12 +04:00
caa1ff9f24 feat: move sync and handshake methods to struct implementation 2025-04-30 18:07:36 +04:00
6defd8963f feat(writer/reader): move write and read methods to SoftSerialWriter and SoftSerialReader traits + impl these traits
a
2025-04-30 18:06:46 +04:00
46837a68e4 fix(check): change bool expression for check condition 2025-04-25 23:11:33 +04:00
698851cbfd fix(read): prevent redundant data left bit shifting
fix(parity_bit):
2025-04-25 23:10:09 +04:00
788060bf38 feat: rename crate dependency 2025-04-25 16:35:08 +04:00
a4657e202f feat(feature): add sparkfun-promicro feature 2025-04-25 13:46:42 +04:00
aa554f1fe5 feat: remove avr specs 2025-04-25 12:25:19 +04:00
b5e0708b09 feat: remove interrupt configuration in constructor 2025-04-24 22:40:41 +04:00
19 changed files with 232 additions and 751 deletions

View File

@@ -3,13 +3,25 @@ name = "soft-serial"
version = "0.1.0"
edition = "2021"
[dependencies.ufmt]
version = "*"
optional = true
[dependencies.ring-buffer]
git = "https://gitea.doryan04.ru/doryan/ring-buffer"
optional = true
[dependencies.arduino-hal]
git = "https://github.com/rahix/avr-hal"
rev = "3e362624547462928a219c40f9ea8e3a64f21e5f"
features = ["sparkfun-promicro"]
[dependencies.static_pins]
git = "https://gitea.doryan04.ru/TheEmbeddedRust/static_pins"
[dependencies.static-pins]
git = "https://gitea.doryan04.ru/TheEmbeddedRust/static-pins"
[features]
sparkfun-promicro = ["arduino-hal/sparkfun-promicro", "static-pins/sparkfun-promicro"]
ring-buf = ["dep:ring-buffer"]
ufmt = ["dep:ufmt"]
[dependencies.avr-device]
version = "0.5.4"

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega1280",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega1280",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega1280",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega1284p",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega1284p",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega1284p",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega128a",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega128a",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega128a",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega164pa",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega164pa",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega164pa",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega168",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega168",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega168",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega2560",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega2560",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega2560",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega328",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega328",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega328",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega328p",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega328p",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega328p",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega32a",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega32a",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega32a",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega32u4",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega32u4",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega32u4",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega48p",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega48p",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega48p",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "atmega8",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=atmega8",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=atmega8",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "attiny167",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=attiny167",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=attiny167",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "attiny2313",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=attiny2313",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=attiny2313",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "attiny85",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=attiny85",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=attiny85",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -1,41 +0,0 @@
{
"arch": "avr",
"atomic-cas": false,
"cpu": "attiny88",
"crt-objects-fallback": "false",
"data-layout": "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8",
"eh-frame-header": false,
"exe-suffix": ".elf",
"late-link-args": {
"gnu-cc": [
"-lgcc"
],
"gnu-lld-cc": [
"-lgcc"
]
},
"linker": "avr-gcc",
"linker-flavor": "gnu-cc",
"llvm-target": "avr-unknown-unknown",
"max-atomic-width": 8,
"metadata": {
"description": null,
"host_tools": null,
"std": null,
"tier": null
},
"no-default-libraries": false,
"pre-link-args": {
"gnu-cc": [
"-mmcu=attiny88",
"-Wl,--as-needed,--print-memory-usage"
],
"gnu-lld-cc": [
"-mmcu=attiny88",
"-Wl,--as-needed,--print-memory-usage"
]
},
"relocation-model": "static",
"target-c-int-width": "16",
"target-pointer-width": "16"
}

View File

@@ -4,7 +4,7 @@ use core::marker::PhantomData;
use arduino_hal::{
delay_us,
pac::EXINT,
hal::port::{PB4, PB5, PE6},
port::{
mode::{Input, PullUp},
Pin, PinOps,
@@ -14,6 +14,9 @@ use arduino_hal::{
use avr_device::asm::delay_cycles;
use static_pins::StaticPinOps;
use ufmt::derive::uDebug;
mod structures;
pub type PollResult = Result<(), PollError>;
pub type ReadByteResult = Result<u8, CorruptedData>;
@@ -23,11 +26,18 @@ const SERIAL_DELAY: u32 = 4;
const FIRST_HALF_SERIAL_DELAY: u32 = SERIAL_DELAY / 2;
const SECOND_HALF_SERIAL_DELAY: u32 = SERIAL_DELAY - FIRST_HALF_SERIAL_DELAY;
const READING_ADJUST: u32 = 16;
const FIRST_ENTRY_READING: u32 = 30;
const LSB: u8 = 0x01;
const MSB: u8 = 0x80;
const READING_ADJUST: u32 = 10;
const TX_DELAY_CYCLES: u32 = 22;
const MSB: u16 = 0x0800;
const PACKET_MASK: u16 = 0x0FFF;
#[inline(always)]
fn crc_calculate(value: u8) -> u8 {
((value >> 6) | (value >> 4) | (value >> 2) | value) & 0x0F
}
#[cfg(feature = "ufmt")]
#[derive(uDebug)]
pub enum PollError {
NotFound,
NotReady,
@@ -37,84 +47,81 @@ pub struct HalfDuplexSerial<P> {
_pin: PhantomData<Pin<Input<PullUp>, P>>,
}
#[cfg(debug_assertions)]
#[inline(always)]
fn debug_pb4_low() {
PB4::set_low();
}
#[cfg(debug_assertions)]
#[inline(always)]
fn debug_pb4_high() {
PB4::set_high();
}
#[allow(dead_code)]
#[cfg(debug_assertions)]
#[inline(always)]
fn debug_pb4_pulse_positive() {
debug_pb4_low();
debug_pb4_high();
}
#[allow(dead_code)]
#[cfg(debug_assertions)]
#[inline(always)]
fn debug_pb4_pulse_negative() {
debug_pb4_high();
debug_pb4_low();
}
impl<P> HalfDuplexSerial<P>
where
P: PinOps + StaticPinOps,
{
#[inline]
pub fn new(_pin: Pin<Input<PullUp>, P>, exint: &EXINT) -> Self {
exint.eimsk.write(|w| w.bits(1 << 1));
exint.eicra.write(|w| unsafe { w.bits(!(1 << 3 | 1 << 2)) });
pub fn new(_pin: Pin<Input<PullUp>, P>) -> Self {
if cfg!(debug_assertions) {
PB4::into_output_high();
PB5::into_output_high();
PE6::into_output_high();
}
Self {
_pin: PhantomData {},
}
}
}
pub trait SoftSerial<P>
where
P: PinOps + StaticPinOps,
{
fn poll(&self) -> PollResult;
fn response(&self);
fn sync_reciever(&self);
fn sync_transmitter(&self);
fn write_byte(&self, data: u8);
fn read_byte(&self) -> ReadByteResult;
#[inline]
fn finish_write(&self) {
P::into_pull_up_input();
while P::is_low() {}
}
fn write_bytes(&self, transmit_data: &[u8]) {
for byte in transmit_data {
self.write_byte(*byte);
self.sync_transmitter();
}
}
fn read_bytes(&self, recieve_buffer: &mut [u8]) {
for byte in recieve_buffer {
if let Ok(data) = self.read_byte() {
*byte = data;
}
self.sync_reciever();
}
}
}
impl<P> SoftSerial<P> for HalfDuplexSerial<P>
where
P: PinOps + StaticPinOps,
{
fn poll(&self) -> PollResult {
pub fn poll(&self) -> PollResult {
PE6::set_low();
P::into_output();
delay_cycles(1);
delay_cycles(2);
P::into_pull_up_input();
delay_us(SERIAL_DELAY);
delay_us(SERIAL_DELAY + FIRST_HALF_SERIAL_DELAY);
if P::is_low() {
PE6::set_high();
return PollResult::Err(PollError::NotFound);
}
delay_us(SERIAL_DELAY);
if P::is_high() {
PE6::set_high();
return PollResult::Err(PollError::NotReady);
}
while P::is_low() {}
PE6::set_high();
PollResult::Ok(())
}
fn response(&self) {
pub fn response(&self) {
PE6::set_low();
P::into_output_high();
delay_us(FIRST_HALF_SERIAL_DELAY);
@@ -123,87 +130,153 @@ where
delay_us(SERIAL_DELAY);
P::set_high();
P::into_pull_up_input();
PE6::set_high();
}
#[inline]
pub fn sync_transmitter(&self) {
if cfg!(debug_assertions) {
PB5::set_low();
}
#[inline(never)]
fn sync_transmitter(&self) {
P::into_output();
delay_us(SERIAL_DELAY);
P::set_high();
if cfg!(debug_assertions) {
PB5::set_high();
}
}
#[inline]
pub fn sync_reciever(&self) {
if cfg!(debug_assertions) {
PB5::set_low();
}
#[inline(never)]
fn sync_reciever(&self) {
while P::is_high() {}
while P::is_low() {}
if cfg!(debug_assertions) {
PB5::set_high();
}
}
#[inline(never)]
fn write_byte(&self, data: u8) {
let (mut data, mut parity_bit) = (data, 0);
#[inline]
pub fn reset(&self) {
P::into_pull_up_input();
}
}
pub trait SoftSerialWriter<P, T>: SoftSerialByteWriter<P>
where
P: PinOps + StaticPinOps,
{
fn write_bytes(&self, transmit_data: T);
}
pub trait SoftSerialReader<P, T>: SoftSerialByteReader<P>
where
P: PinOps + StaticPinOps,
{
fn read_bytes(&self, recieve_data: T) -> Result<(), CorruptedData>;
}
pub trait SoftSerialByteWriter<P>
where
P: PinOps + StaticPinOps,
{
#[inline(never)]
fn write_byte(&self, transmit_data: u8) {
let mut data = ((transmit_data as u16) << 4) | (crc_calculate(transmit_data) as u16);
for _ in 0..(u8::BITS + 4) {
debug_pb4_low();
for _ in 0..8 {
if data & MSB == 0 {
P::set_high();
parity_bit ^= 0;
} else {
P::set_low();
parity_bit ^= 1;
}
data = (data << 1) & PACKET_MASK;
delay_us(SERIAL_DELAY);
data <<= 1;
debug_pb4_high();
}
// Hamming code and CRC are very weightful and slow, so I use simple parity check
if parity_bit == 0 {
P::set_high();
} else {
P::set_low();
}
delay_us(SERIAL_DELAY);
delay_cycles(TX_DELAY_CYCLES);
}
}
pub trait SoftSerialByteReader<P>
where
P: PinOps + StaticPinOps,
{
#[inline(never)]
fn read_byte(&self) -> ReadByteResult {
let (mut data, mut reciever_parity_bit) = (0, 0);
let mut packet = 0u16;
for _ in 0..(u8::BITS + 4) {
debug_pb4_low();
delay_cycles(FIRST_ENTRY_READING);
for _ in 0..8 {
delay_us(FIRST_HALF_SERIAL_DELAY);
delay_cycles(READING_ADJUST);
if P::is_low() {
data |= 1;
reciever_parity_bit ^= 1;
packet = (packet << 1) | 1;
} else {
data |= 0;
reciever_parity_bit ^= 0;
packet <<= 1;
}
delay_cycles(READING_ADJUST);
delay_us(SECOND_HALF_SERIAL_DELAY);
data <<= 1;
debug_pb4_high();
}
delay_us(FIRST_HALF_SERIAL_DELAY);
let data = (packet >> 4) as u8;
let received_crc = (packet & 0x000F) as u8;
let calculated_crc = crc_calculate(data);
let transmitter_parity_bit = (P::read() >> P::PIN_NUM) & LSB;
delay_cycles(READING_ADJUST);
delay_us(SECOND_HALF_SERIAL_DELAY);
if reciever_parity_bit != transmitter_parity_bit {
return Err((data, reciever_parity_bit));
if received_crc != calculated_crc {
return Err((received_crc, calculated_crc));
}
Ok(data)
}
}
impl<P: PinOps + StaticPinOps> SoftSerialByteWriter<P> for HalfDuplexSerial<P> {}
impl<P: PinOps + StaticPinOps> SoftSerialByteReader<P> for HalfDuplexSerial<P> {}
impl<P> SoftSerialWriter<P, &[u8]> for HalfDuplexSerial<P>
where
P: PinOps + StaticPinOps,
{
fn write_bytes(&self, transmit_data: &[u8]) {
for byte in transmit_data {
self.write_byte(*byte);
self.sync_transmitter();
}
}
}
impl<P> SoftSerialReader<P, &mut [u8]> for HalfDuplexSerial<P>
where
P: PinOps + StaticPinOps,
{
fn read_bytes(&self, recieve_data: &mut [u8]) -> Result<(), CorruptedData> {
for byte in recieve_data {
*byte = self.read_byte()?;
self.sync_reciever();
}
Ok(())
}
}

52
src/structures/mod.rs Normal file
View File

@@ -0,0 +1,52 @@
use arduino_hal::port::PinOps;
use static_pins::StaticPinOps;
use crate::{
HalfDuplexSerial, SoftSerialByteReader, SoftSerialByteWriter, SoftSerialReader,
SoftSerialWriter,
};
#[cfg(feature = "ring-buf")]
pub mod ring_buf {
use crate::CorruptedData;
use super::*;
use ring_buffer::RingBuffer;
impl<const N: usize, P> SoftSerialWriter<P, &mut RingBuffer<N>> for HalfDuplexSerial<P>
where
P: PinOps + StaticPinOps,
{
#[inline(always)]
fn write_bytes(&self, transmit_data: &mut RingBuffer<N>) {
self.write_byte(transmit_data.len() as u8);
for byte in transmit_data {
self.sync_transmitter();
self.write_byte(byte);
}
self.sync_transmitter();
}
}
impl<const N: usize, P> SoftSerialReader<P, &mut RingBuffer<N>> for HalfDuplexSerial<P>
where
P: PinOps + StaticPinOps,
{
#[inline(always)]
fn read_bytes(&self, recieve_data: &mut RingBuffer<N>) -> Result<(), CorruptedData> {
let len = self.read_byte()?;
for _ in 0..len {
self.sync_reciever();
recieve_data.push(self.read_byte()?);
}
self.sync_reciever();
Ok(())
}
}
}