Finalize thesis report and fix grammar mistakes
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2023-01-15 21:51:11 +01:00
parent 77fbdd194f
commit 10bf9ebf44
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
21 changed files with 2716 additions and 211 deletions

View file

@ -0,0 +1,38 @@
// Define constants
preamble = [1, 1, 1, 0, 0, 0, 1, 1, 1]
// Set clock speed
clock_speed = 500
// Get the text from the user
text = get_input()
// Convert the ASCII text to a bit stream
payload = ascii_to_bits(text)
// Calculate the length of the payload in bytes
header = byte_length(payload)
// Calculate the CRC-8-AUTOSAR checksum of the payload
checksum = calculate_checksum(payload)
// Combine the header, payload, and checksum into a packet
packet = to_bits(header) + payload + to_bits(checksum)
// Encode packet using manchester encoding
encoded_packet = manchester_encode(packet)
// Start the transmission by sending the preamble
for symbol in preamble:
if symbol is 1:
stress_cpu(1000)
else:
idle_cpu(1000)
// Transmit the manchester encoded bit stream of the packet
while transmission_not_stopped:
for code_bit in encoded_packet:
if code_bit is 1:
stress_cpu(clock_speed)
else:
idle_cpu(clock_speed)