board.Makefile 605 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Config for Pied2455
  3. #
  4. # ------------- Chip/frequency : -----------------
  5. CHIP=18f2455
  6. FAMILLY=18f
  7. FOSC=48000000 # 48 Mhz
  8. # ------------- Program memory vectors : -----------------
  9. APP_START='0x800' # application entry point : 0x800 because programmed whith usb bootloader
  10. MEM_SIZE=0x6000
  11. # ------------- Serial : -----------------
  12. # which UART is used ?
  13. UART_PORT=1
  14. # configure the serial driver PIN and TRIS
  15. SERDRV_PIN=LATBbits.LATB0
  16. SERDRV_TRI=TRISBbits.TRISB0
  17. #serial driver pin polarity : state of the pin that enables serial driver
  18. SERDRV_POL=1
  19. #does config.c have setup ?
  20. CONFIG_SETUP=0