* Remove the need for generic const expressions and use buffers provided in the flash config. * Extend embedded-storage traits to simplify generics. * Document all public APIs * Add toplevel README * Expose AlignedBuffer type for convenience. * Update examples
		
			
				
	
	
		
			10 lines
		
	
	
		
			439 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			439 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| probe-rs-cli erase --chip STM32H743ZITx
 | |
| mv ../../bootloader/stm32/memory.x ../../bootloader/stm32/memory-old.x
 | |
| cp memory-bl.x ../../bootloader/stm32/memory.x
 | |
| 
 | |
| cargo flash --manifest-path ../../bootloader/stm32/Cargo.toml --release --features embassy-stm32/stm32h743zi --chip STM32H743ZITx --target thumbv7em-none-eabihf
 | |
| 
 | |
| rm ../../bootloader/stm32/memory.x
 | |
| mv ../../bootloader/stm32/memory-old.x ../../bootloader/stm32/memory.x
 |