18 lines
237 B
C
18 lines
237 B
C
//
|
|
// Created by Wind on 2025/11/9.
|
|
//
|
|
|
|
#ifndef CLION_STM32_CPP_INTERFACE_H
|
|
#define CLION_STM32_CPP_INTERFACE_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void interface();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //CLION_STM32_CPP_INTERFACE_H
|