c++ "guards" to all includes, configuring c++ include paths
This commit is contained in:
parent
c161274d31
commit
683cf43f4b
5 changed files with 43 additions and 3 deletions
|
@ -11,8 +11,16 @@
|
|||
#include <inttypes.h>
|
||||
#include <platform/dma_ll.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void Mcd_Init(DMA_TypeDef *dma, uint32_t stream);
|
||||
void * Mcd_Copy(void *dst, void const *src, size_t length);
|
||||
void Mcd_HandleDmaIrq();
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* MEMCPY_DMA_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue