board.Makefile 581 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Config for FraiseStep with a pic 18F25K22
  3. #
  4. # ------------- Chip/frequency : -----------------
  5. CHIP=18f25k22
  6. FAMILLY=18f
  7. FOSC=64000000 # 64 Mhz
  8. # ------------- Program memory vectors : -----------------
  9. APP_START='0x0000' # application entry point
  10. MEM_SIZE=0x8000
  11. # ------------- Serial : -----------------
  12. # which UART is used ?
  13. UART_PORT=1
  14. # configure the serial driver PIN and TRIS
  15. SERDRV_PIN=LATCbits.LATC5
  16. SERDRV_TRI=TRISCbits.TRISC5
  17. #serial driver pin polarity : state of the pin that enables serial driver
  18. SERDRV_POL=0
  19. #does config.c have setup ?
  20. CONFIG_SETUP=1