test 1.3 and start on 1.4

This commit is contained in:
2025-09-24 18:25:29 +02:00
parent abfb65c7d4
commit 58432896a4
9 changed files with 310 additions and 41 deletions

View File

@@ -1,5 +1,6 @@
---
sub_title: "Real Time Systems 10"
class_code: "ELERTS10"
auther:
- name: "Finley van Reenen (0964590)"
email: "mail@lailatheelf.nl"

View File

@@ -27,7 +27,7 @@ Bit 12 and 14 sould start different as bit 13 and 15. Then invert all four bits
I found the defines in the sourcefile where the _modder_ defines are defined.
```c-like=
```c {.numberLines}
#include <stdint.h>
#include <stm32f4xx.h>
@@ -78,7 +78,7 @@ skiped
I added line 6 throw 15, the rest is uncheached.
```c-like=
```c {.numberLines}
#include <stdint.h>
#include <stm32f4xx.h>
@@ -125,7 +125,7 @@ I mesured the toggle time to be around 1.5 seconsds. This is what is expected.
First the power modules needs to be configured to allow for the hige clockspeed.
```c-like
```c
// enable power control
RCC->APB1ENR |= RCC_APB1ENR_PWREN;
// set voltage to support 100 MHz
@@ -136,7 +136,7 @@ Now the flash latancy is set. The powersupply on the board is $3V$. This means t
![](https://live.kladjes.nl/uploads/64ef314f-35ef-4435-9d24-16a72257f785.png)
```c-like
```c
// set flash latency to support 100 MHz
FLASH->ACR |= FLASH_ACR_LATENCY_3WS;
// Wait until the wait states are used