1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/sdcard_spi
Marian Buschsieweke b15af47f34
drivers/sdcard_spi: make 8-bit safe
- replace all `int`s and `unsigned`s with integers with fixed width
- replaced all signed integers of sizes with unsigned ones (sizes
  cannot be negative)
- made bitshifts 8-bit safe (e.g. `1 << 24` is valid on 32-bit, but
  undefined behavior on 8-bit, as a 16 bit wide `int` would be shifted
  by more than the type width)
- use `void *` / `const void *` for data buffers to ease use
2022-09-11 10:27:40 +02:00
..
include drivers/sdcard_spi: allow board to overwrite SD_CARD_SPI_SPEED_POSTINIT 2022-03-11 11:59:40 +01:00
Kconfig drivers/sdcard_spi: Update kconfig model 2022-03-04 14:15:52 +01:00
Makefile drivers: added driver for accessing sd_cards over spi 2017-01-20 18:11:26 +01:00
Makefile.dep drivers/sdcard_spi: convert to ztimer_usec 2021-12-09 08:02:06 +01:00
Makefile.include drivers: move USEMODULE_INCLUDES in each driver directories 2020-07-15 20:36:27 +02:00
sdcard_spi.c drivers/sdcard_spi: make 8-bit safe 2022-09-11 10:27:40 +02:00