NEORV32 Software Framework Documentation
The NEORV32 RISC-V Processor
Loading...
Searching...
No Matches
sdcard.h
Go to the documentation of this file.
1// ================================================================================ //
2// The NEORV32 RISC-V Processor - https://github.com/stnolting/neorv32 //
3// Copyright (c) NEORV32 contributors. //
4// Copyright (c) 2020 - 2025 Stephan Nolting. All rights reserved. //
5// Licensed under the BSD-3-Clause license, see LICENSE for details. //
6// SPDX-License-Identifier: BSD-3-Clause //
7// ================================================================================ //
8
14#ifndef SD_CARD_H
15#define SD_CARD_H
16
17#include <stdint.h>
18
19int sdcard_setup(void);
20int sdcard_stream_get(uint32_t* rdata);
21
22#endif // SDCARD_H
int sdcard_stream_get(uint32_t *rdata)
Definition sdcard.c:60
int sdcard_setup(void)
Definition sdcard.c:28