설명 없음
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.

pin_programming.h 252B

12345678910111213
  1. #ifndef PIN_PROGRAMMING_H
  2. #define PIN_PROGRAMMING_H
  3. typedef enum
  4. {
  5. MODULE_ID_BASE_STATION = 1,
  6. MODULE_ID_DISPLAY = 2,
  7. MODULE_ID_SENSOR = 3
  8. } MODULE_ID;
  9. void Configure_Pin_Programming_Pins(void);
  10. uint8_t Get_Own_Identifier(void);
  11. #endif