Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

39 rindas
1.3 KiB

  1. #ifndef PLSR_BUILD_CONFIG_H
  2. #define PLSR_BUILD_CONFIG_H
  3. /* Validation is the repository default while the remaining board acceptance
  4. * suite is being executed. A production image must override this symbol to
  5. * zero in the IAR configuration; the Modbus control plane remains available. */
  6. #ifndef PLSR_ENABLE_BOARD_SELF_TEST
  7. #define PLSR_ENABLE_BOARD_SELF_TEST (1U)
  8. #endif
  9. #ifndef PLSR_ENABLE_HW_TRACE
  10. #define PLSR_ENABLE_HW_TRACE PLSR_ENABLE_BOARD_SELF_TEST
  11. #endif
  12. #ifndef PLSR_ENABLE_DESTRUCTIVE_PERSISTENCE_DIAG
  13. #define PLSR_ENABLE_DESTRUCTIVE_PERSISTENCE_DIAG (0U)
  14. #endif
  15. #ifndef APP_ENABLE_USB_CDC
  16. #define APP_ENABLE_USB_CDC (1U)
  17. #endif
  18. #define PLSR_BOARD_TEST_NONE (0U)
  19. #define PLSR_BOARD_TEST_CW_CCW (9U)
  20. #define PLSR_BOARD_TEST_FAST_REFRESH (10U)
  21. #define PLSR_BOARD_TEST_DYNAMIC_FREQ (11U)
  22. #define PLSR_BOARD_TEST_MODBUS_DATA (12U)
  23. #define PLSR_BOARD_TEST_MODBUS_CONTROL (13U)
  24. #define PLSR_BOARD_TEST_HW_COUNTER (14U)
  25. #define PLSR_BOARD_TEST_DUAL_AB (17U)
  26. #define PLSR_BOARD_TEST_LONG_STRESS (18U)
  27. #define PLSR_BOARD_TEST_PHYSICAL_INPUT (19U)
  28. #ifndef PLSR_BOARD_TEST_SELECT
  29. #define PLSR_BOARD_TEST_SELECT PLSR_BOARD_TEST_DUAL_AB
  30. #endif
  31. #endif