sys_config.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * @note
  3. * Copyright(C) NXP Semiconductors, 2014
  4. * All rights reserved.
  5. *
  6. * @par
  7. * Software that is described herein is for illustrative purposes only
  8. * which provides customers with programming information regarding the
  9. * LPC products. This software is supplied "AS IS" without any warranties of
  10. * any kind, and NXP Semiconductors and its licensor disclaim any and
  11. * all warranties, express or implied, including all implied warranties of
  12. * merchantability, fitness for a particular purpose and non-infringement of
  13. * intellectual property rights. NXP Semiconductors assumes no responsibility
  14. * or liability for the use of the software, conveys no license or rights under any
  15. * patent, copyright, mask work right, or any other intellectual property rights in
  16. * or to any products. NXP Semiconductors reserves the right to make changes
  17. * in the software without notification. NXP Semiconductors also makes no
  18. * representation or warranty that such application will be suitable for the
  19. * specified use without further testing or modification.
  20. *
  21. * @par
  22. * Permission to use, copy, modify, and distribute this software and its
  23. * documentation is hereby granted, under NXP Semiconductors' and its
  24. * licensor's relevant copyrights in the software, without fee, provided that it
  25. * is used in conjunction with NXP Semiconductors microcontrollers. This
  26. * copyright, permission, and disclaimer notice must appear in all copies of
  27. * this code.
  28. */
  29. #ifndef __SYS_CONFIG_H_
  30. #define __SYS_CONFIG_H_
  31. /* Build for LPC5410X chip family */
  32. #define CHIP_LPC5410X
  33. /* Define ROMDRIVERSV2_PRESENT to enable v2 driver support in ROM. For LPC54xxx
  34. devices with boot ROM version 17.2 and later, this should be defined.
  35. For earlier versions, this should not be defined. If the definitions is
  36. not defined, the same v2 drivers will be used, but will use a version that
  37. is located in FLASH instead. */
  38. // #define ROMDRIVERSV2_PRESENT
  39. #endif /* __SYS_CONFIG_H_ */