common.h 311 B

123456789101112131415161718
  1. // Common platform functions
  2. #ifndef __COMMON_H__
  3. #define __COMMON_H__
  4. #include "platform.h"
  5. // Functions exported by the common platform layer
  6. void cmn_platform_init(void);
  7. // Timer-specific functions
  8. // System timer generic implemenation
  9. // Filesystem-related functions
  10. #endif // #ifndef __COMMON_H__