board.Makefile 583 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # Config for FraiseStep0 ( carte simple face )
  3. #
  4. # ------------- Chip/frequency : -----------------
  5. CHIP=18f2455
  6. FAMILLY=18f
  7. FOSC=48000000 # 48 Mhz
  8. # ------------- Program memory vectors : -----------------
  9. APP_START='0x000' # application entry point
  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=0
  19. #does config.c have setup ?
  20. CONFIG_SETUP=0