You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
488 B

  1. #include "xs_device_info.h"
  2. #include <stdbool.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include "xs_log.h"
  6. /*******************************************************************************
  7. * EXTERN *
  8. *******************************************************************************/
  9. xs_device_info_t* xs_device_info_get() { //
  10. xs_device_info_t* info = (xs_device_info_t*)DEVICE_INFO_START_ADD;
  11. return info;
  12. }