This repository has been archived on 2023-02-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
bachelor-thesis/documentation/thesis/content/02_preliminaries.tex
Severin Kaderli 2c66a18f0e
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update chapter solution with packet format
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
2022-11-02 23:13:49 +01:00

15 lines
778 B
TeX

\chapter{Preliminaries}
\section{Web Worker}
Web Workers are a web API that allows running JavaScript code in background threads in the browser. This way you can run CPU intensive processes without stalling the main thread and locking up the UI.
There's a few limitations with Web Workers. A Web Worker doesn't have access to the DOM, the window object and some web APIs.
The main thread and Web Workers can communicate together using messages. They can send their messages using a postMessage method and the other side receives a message event it can act upon. \cite{WebWorkers}
Web Workers are used in this project to put a load on the CPU to modify the magnetic field without locking up the website itself.
\section{CRC}
\section{Manchester Code}
\section{Hall Sensor}