# # Microchip PIC32MX Ethernet/USB Starter Kit # with I/O Expansion board and SD card pictail module # =================================================== # Console on USB. # # To build the kernel, use: # cd sys/pic32/explorer16 # kconfig Config # make clean # make # # Format of this file is described on page: # http://retrobsd.org/wiki/doku.php/doc/kconfig # architecture "pic32" cpu "PIC32MX7" # Processor variant board "STARTERKIT" # Board type ldscript "baremetal/script.ld" # Linker script # Standard system options options "CPU_KHZ=80000" # Oscillator frequency of CPU core options "BUS_KHZ=80000" # Frequency of peripheral bus options "BUS_DIV=1" # Bus clock divisor 1/2/4/8 # LEDs signal "LED_DISK" pin RD1 # disk activity indicator signal "LED_KERNEL" pin RD2 # kernel activity indicator # Root filesystem at /dev/sd0a, swap at /dev/sd0b config unix root on sd0a swap on sd0b # Console options options "CONSOLE_DEVICE=ttyUSB0" # Console on USB # Virtual UART on USB device uartusb options "USB_MAX_EP_NUMBER=3" options "USB_NUM_STRING_DESCRIPTORS=3" # SPI ports controller spi1 # SD card # SD card device sd0 at spi1 pin RB1 # select pin RB1 options "SD0_PORT=1" # at spi1 TODO: delete options "SD0_CS_PORT=TRISB" # for chip select... TODO: delete options "SD0_CS_PIN=1" # ...use pin RB1 TODO: delete # General purpose I/O ports # Flags define a mask of available pins # The following pins excluded: # RC4, RD0, RD10, RB1 - spi1, SD card device gpio0 flags 0xc6ff # port A device gpio1 flags 0xfffd # port B device gpio2 flags 0xf00e # port C device gpio3 flags 0xfbfe # port D device gpio4 flags 0x03ff # port E device gpio5 flags 0x313f # port F device gpio6 flags 0xf3cf # port G # ADC driver device adc # PWM driver device pwm