From 0bec3b2a9532b212507c6c3d8ad0f7caf57b09b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20K=C3=BCng?= Date: Tue, 18 Apr 2017 20:41:46 +0200 Subject: [PATCH] system_config.h: remove typedef's, there're defined in board_common.h --- src/platforms/posix/include/system_config.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/platforms/posix/include/system_config.h b/src/platforms/posix/include/system_config.h index 72713983a303..64a7fec1dd55 100644 --- a/src/platforms/posix/include/system_config.h +++ b/src/platforms/posix/include/system_config.h @@ -25,8 +25,6 @@ #define BOARD_OVERRIDE_CPU_VERSION (-1) #define board_mcu_version(rev, revstr, errata) BOARD_OVERRIDE_CPU_VERSION -typedef unsigned char uuid_byte_t[PX4_CPU_UUID_BYTE_LENGTH]; -typedef unsigned int uuid_uint32_t[PX4_CPU_UUID_WORD32_LENGTH]; #define board_get_uuid32(id) do {for(int _idi=0; _idi < PX4_CPU_UUID_WORD32_LENGTH; _idi++) {id[_idi] = _idi;}} while(0) #define board_get_uuid32_formated(format_buffer, size, format, seperator) do { strcpy(format_buffer, SIM_FORMATED_UUID); } while(0)