Skip to content

Commit 78d6de5

Browse files
committed
Updated wolfssl to latest master, fixes Cortex-M0 issue.
1 parent f2be454 commit 78d6de5

3 files changed

Lines changed: 2 additions & 22 deletions

File tree

docs/Targets.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,6 @@ partitions of 64KB each, leaving room for up to 8KB to use for swap (4K are bein
6262

6363
Use `make TARGET=stm32l0`. The option `CORTEX_M0` is automatically selected for this target.
6464

65-
#### Known issues
66-
67-
With Ed25519 (default SIGN algorithm) it's not possible at the moment to compile wolfboot
68-
with optimizations, due to a GCC linker error complaining about a missing symbol `__gnu_thumb1_case_uqi`.
69-
70-
Possible workarounds:
71-
- Compile ed25519 with debug (optimizations are disabled) : `make TARGET=stm32l0 DEBUG=1`
72-
- Use ECDSA instead (which is much faster) : `make TARGET=stm32l0 SIGN=ECC256`
73-
74-
7565
## STM32G0x0/STM32G0x1
7666

7767
Example 128KB partitioning on STM32-G070:
@@ -98,16 +88,6 @@ Compile with:
9888

9989
`make TARGET=stm32g0 NVM_FLASH_WRITEONCE=1`
10090

101-
#### Known issues
102-
103-
With Ed25519 (default SIGN algorithm) it's not possible at the moment to compile wolfboot
104-
with optimizations, due to a GCC linker error complaining about a missing symbol `__gnu_thumb1_case_uqi`.
105-
106-
Possible workarounds:
107-
- Compile ed25519 with debug (optimizations are disabled) : `make TARGET=stm32g0 NVM_FLASH_WRITEONCE=1 DEBUG=1`
108-
- Use ECDSA instead (which is much faster) : `make TARGET=stm32g0 NVM_FLASH_WRITEONCE=1 SIGN=ECC256`
109-
110-
11191
## SiFive HiFive1 RISC-V
11292

11393
### Features

lib/wolfssl

Submodule wolfssl updated 159 files

test-app/app_samr21.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
void main(void) {
2929
asm volatile ("cpsie i");
3030
while(1)
31-
WFI();
31+
asm volatile("WFI");
3232
}

0 commit comments

Comments
 (0)