├── Examples ├── C8051F00x_01x │ ├── ADC │ │ ├── F00x_ADC0_ExternalInput.c │ │ ├── F00x_ADC0_ExternalInput_Mux.c │ │ └── F00x_ADC0_TempSensor.asm │ ├── Blinky │ │ ├── C8051F000.INC │ │ ├── F00x_Blinky.asm │ │ ├── F00x_Blinky.c │ │ ├── F00x_Blinky_Asm.wsp │ │ ├── F00x_Blinky_C.wsp │ │ ├── c8051F000.h │ │ └── c8051F000_defs.h │ ├── Comparators │ │ └── F00x_Comparator0_ResetSource.c │ ├── DAC │ │ └── F0xx_DACs_SineCosine.c │ ├── Header_Files │ │ ├── C8051F000.INC │ │ ├── c8051F000.h │ │ └── c8051F000_defs.h │ ├── Interrupts │ │ └── F00x_External_Interrupts.c │ ├── Oscillators │ │ ├── F0xx_Oscillator_CMOS.c │ │ ├── F0xx_Oscillator_Capacitor.c │ │ ├── F0xx_Oscillator_Crystal.c │ │ └── F0xx_Oscillator_RC.c │ ├── PCA │ │ ├── F00x_PCA0_8Bit_PWM_Output.c │ │ ├── F00x_PCA0_Capture_Input.c │ │ ├── F0xx_PCA0_High_Speed_Output.c │ │ └── F0xx_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F00x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F0xx_SMBus_EEPROM.c │ │ ├── F0xx_SMBus_Master.c │ │ ├── F0xx_SMBus_Master_Multibyte.c │ │ ├── F0xx_SMBus_Multimaster.c │ │ ├── F0xx_SMBus_Slave.c │ │ └── F0xx_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F00x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F00x_SPI0_Master.c │ │ └── F00x_SPI0_Slave.c │ ├── Timers │ │ ├── F0xx_Timer0_13bitExtTimer.c │ │ ├── F0xx_Timer0_13bitTimer.c │ │ ├── F0xx_Timer0_16bitTimer.c │ │ ├── F0xx_Timer0_8bitReloadTimer.c │ │ ├── F0xx_Timer0_two_8bitTimers.c │ │ ├── F0xx_Timer2_16bitCaptureTimer.c │ │ └── F0xx_Timer2_16bitReloadTimer.c │ ├── UART │ │ ├── F00x_UART0_Interrupt.c │ │ └── F00x_UART0_STDIO.c │ └── Watchdog │ │ └── F0xx_Watchdog.c ├── C8051F02x │ ├── ADC │ │ ├── F02x_ADC0_ExternalInput.c │ │ ├── F02x_ADC0_ExternalInput_Mux.c │ │ └── F02x_ADC0_TempSensor.asm │ ├── Blinky │ │ ├── C8051F020.INC │ │ ├── C8051F020_defs.h │ │ ├── F02x_Blinky.asm │ │ ├── F02x_Blinky.c │ │ ├── F02x_Blinky_Asm.wsp │ │ ├── F02x_Blinky_C.wsp │ │ ├── c8051F020.h │ │ └── compiler_defs.h │ ├── Comparators │ │ └── F02x_Comparator0_ResetSource.c │ ├── DAC │ │ └── F02x_DACs_SineCosine.c │ ├── Header_Files │ │ ├── C8051F020.INC │ │ ├── C8051F020_defs.h │ │ ├── c8051F020.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F02x_External_Interrupts.c │ ├── Oscillators │ │ ├── F02x_Oscillator_CMOS.c │ │ ├── F02x_Oscillator_Capacitor.c │ │ ├── F02x_Oscillator_Crystal.c │ │ └── F02x_Oscillator_RC.c │ ├── PCA │ │ ├── F02x_PCA0_16Bit_PWM_Output.c │ │ ├── F02x_PCA0_8Bit_PWM_Output.c │ │ ├── F02x_PCA0_Capture_Input.c │ │ ├── F02x_PCA0_Frequency_Output.c │ │ ├── F02x_PCA0_High_Speed_Output.c │ │ └── F02x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F02x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F02x_SMBus_EEPROM.c │ │ ├── F02x_SMBus_Master.c │ │ ├── F02x_SMBus_Master_Multibyte.c │ │ ├── F02x_SMBus_Multimaster.c │ │ ├── F02x_SMBus_Slave.c │ │ └── F02x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F02x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F02x_SPI0_Master.c │ │ └── F02x_SPI0_Slave.c │ ├── Timers │ │ ├── F02x_Timer0_13bitExtTimer.c │ │ ├── F02x_Timer0_13bitTimer.c │ │ ├── F02x_Timer0_16bitTimer.c │ │ ├── F02x_Timer0_8bitReloadTimer.c │ │ ├── F02x_Timer0_two_8bitTimers.c │ │ ├── F02x_Timer2_16bitCaptureTimer.c │ │ └── F02x_Timer2_16bitReloadTimer.c │ ├── UART │ │ ├── F02x_UART1_Interrupt.c │ │ └── F02x_UARTs_STDIO_Polled_2UARTs.c │ └── Watchdog │ │ └── F02x_Watchdog.c ├── C8051F04x │ ├── ADC │ │ ├── F04x_ADC0_ExternalInput.c │ │ └── F04x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F040.INC │ │ ├── F04x_Blinky.asm │ │ ├── F04x_Blinky.c │ │ ├── F04x_Blinky_Asm.wsp │ │ ├── F04x_Blinky_C.wsp │ │ ├── c8051F040.h │ │ └── c8051F040_defs.h │ ├── CAN │ │ ├── F04x_CAN1.c │ │ └── F04x_CAN2.c │ ├── Comparators │ │ └── F04x_Comparator0_ResetSource.c │ ├── DAC │ │ └── F04x_DACs_SineCosine.c │ ├── Header_Files │ │ ├── C8051F040.INC │ │ ├── c8051F040.h │ │ └── c8051F040_defs.h │ ├── Interrupts │ │ └── F04x_External_Interrupts.c │ ├── Oscillators │ │ ├── F04x_Oscillator_CMOS.c │ │ ├── F04x_Oscillator_Capacitor.c │ │ ├── F04x_Oscillator_Crystal.c │ │ └── F04x_Oscillator_RC.c │ ├── PCA │ │ ├── F04x_PCA0_16Bit_PWM_Output.c │ │ ├── F04x_PCA0_8Bit_PWM_Output.c │ │ ├── F04x_PCA0_Capture_Input.c │ │ ├── F04x_PCA0_Frequency_Output.c │ │ ├── F04x_PCA0_High_Speed_Output.c │ │ └── F04x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F04x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F04x_SMBus_EEPROM.c │ │ ├── F04x_SMBus_Master.c │ │ ├── F04x_SMBus_Master_Multibyte.c │ │ ├── F04x_SMBus_Multimaster.c │ │ ├── F04x_SMBus_Slave.c │ │ └── F04x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F04x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F04x_SPI0_Master.c │ │ └── F04x_SPI0_Slave.c │ ├── Timers │ │ ├── F04x_Timer0_13bitExtTimer.c │ │ ├── F04x_Timer0_13bitTimer.c │ │ ├── F04x_Timer0_16bitTimer.c │ │ ├── F04x_Timer0_8bitReloadTimer.c │ │ ├── F04x_Timer0_two_8bitTimers.c │ │ ├── F04x_Timer2_16bitCaptureTimer.c │ │ ├── F04x_Timer2_16bitReloadTimer.c │ │ └── F04x_Timer2_16bitToggle.c │ ├── UART │ │ ├── F04x_UART0_Interrupt.c │ │ ├── F04x_UART1_Interrupt.c │ │ └── F04x_UARTs_STDIO_Polled_2UARTs.c │ └── Watchdog │ │ └── F04x_Watchdog.c ├── C8051F06x │ ├── ADC │ │ ├── F06x_ADC2_ExternalInput.c │ │ ├── F06x_ADC2_ExternalInput_Mux.c │ │ └── F06x_SAR16data.c │ ├── Blinky │ │ ├── C8051F060.INC │ │ ├── C8051F060_defs.H │ │ ├── F06x_Blinky.asm │ │ ├── F06x_Blinky.c │ │ ├── F06x_Blinky_Asm.wsp │ │ ├── F06x_Blinky_C.wsp │ │ └── c8051F060.h │ ├── Comparators │ │ └── F06x_Comparator0_ResetSource.c │ ├── DAC │ │ └── F06x_DACs_SineCosine.c │ ├── Header_Files │ │ ├── C8051F060.INC │ │ ├── C8051F060_defs.H │ │ └── c8051F060.h │ ├── Interrupts │ │ └── F06x_External_Interrupts.c │ ├── Oscillators │ │ ├── F06x_Oscillator_CMOS.c │ │ ├── F06x_Oscillator_Capacitor.c │ │ ├── F06x_Oscillator_Crystal.c │ │ └── F06x_Oscillator_RC.c │ ├── PCA │ │ ├── F06x_PCA0_16Bit_PWM_Output.c │ │ ├── F06x_PCA0_8Bit_PWM_Output.c │ │ ├── F06x_PCA0_Capture_Input.c │ │ ├── F06x_PCA0_Frequency_Output.c │ │ ├── F06x_PCA0_High_Speed_Output.c │ │ └── F06x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F06x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F06x_SMBus_EEPROM.c │ │ ├── F06x_SMBus_Master.c │ │ ├── F06x_SMBus_Master_Multibyte.c │ │ ├── F06x_SMBus_Multimaster.c │ │ ├── F06x_SMBus_Slave.c │ │ └── F06x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F06x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F06x_SPI0_Master.c │ │ └── F06x_SPI0_Slave.c │ ├── Timers │ │ ├── F06x_Timer0_13bitExtTimer.c │ │ ├── F06x_Timer0_13bitTimer.c │ │ ├── F06x_Timer0_16bitTimer.c │ │ ├── F06x_Timer0_8bitReloadTimer.c │ │ ├── F06x_Timer0_two_8bitTimers.c │ │ ├── F06x_Timer2_16bitCaptureTimer.c │ │ ├── F06x_Timer2_16bitReloadTimer.c │ │ └── F06x_Timer2_16bitToggle.c │ ├── UART │ │ ├── F06x_UART0_Interrupt.c │ │ ├── F06x_UART1_Interrupt.c │ │ └── F06x_UARTs_STDIO_Polled_2UARTs.c │ └── Watchdog │ │ └── F06x_Watchdog.c ├── C8051F12x_13x │ ├── ADC │ │ ├── F12x_ADC0_ExternalInput.c │ │ └── F12x_ADC0_ExternalInput_Mux.c │ ├── Banking │ │ ├── L51_BANK.A51 │ │ └── STARTUP.A51 │ ├── Blinky │ │ ├── C8051F120.INC │ │ ├── C8051F120_defs.h │ │ ├── F12x_Blinky.asm │ │ ├── F12x_Blinky.c │ │ ├── F12x_Blinky_Asm.wsp │ │ ├── F12x_Blinky_C.wsp │ │ └── c8051F120.h │ ├── Comparators │ │ └── F12x_Comparator0_ResetSource.c │ ├── DAC │ │ └── F12x_DACs_SineCosine.c │ ├── EMIF │ │ └── F12x_EMIF_AB1.c │ ├── Header_Files │ │ ├── C8051F120.INC │ │ ├── C8051F120_defs.h │ │ └── c8051F120.h │ ├── Interrupts │ │ └── F12x_External_Interrupts.c │ ├── MAC │ │ └── F12x_Math_MAC.c │ ├── Oscillators │ │ ├── F12x_Oscillator_CMOS.c │ │ ├── F12x_Oscillator_Capacitor.c │ │ ├── F12x_Oscillator_Crystal.c │ │ ├── F12x_Oscillator_Internal_PLL.c │ │ └── F12x_Oscillator_RC.c │ ├── PCA │ │ ├── F12x_PCA0_16Bit_PWM_Output.c │ │ ├── F12x_PCA0_8Bit_PWM_Output.c │ │ ├── F12x_PCA0_Capture_Input.c │ │ ├── F12x_PCA0_Frequency_Output.c │ │ ├── F12x_PCA0_High_Speed_Output.c │ │ └── F12x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F12x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F12x_SMBus_EEPROM.c │ │ ├── F12x_SMBus_Master.c │ │ ├── F12x_SMBus_Master_Multibyte.c │ │ ├── F12x_SMBus_Multimaster.c │ │ ├── F12x_SMBus_Slave.c │ │ └── F12x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F12x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F12x_SPI0_Master.c │ │ └── F12x_SPI0_Slave.c │ ├── Timers │ │ ├── F12x_Timer0_13bitExtTimer.c │ │ ├── F12x_Timer0_13bitTimer.c │ │ ├── F12x_Timer0_16bitTimer.c │ │ ├── F12x_Timer0_8bitReloadTimer.c │ │ ├── F12x_Timer0_two_8bitTimers.c │ │ ├── F12x_Timer2_16bitCaptureTimer.c │ │ ├── F12x_Timer2_16bitReloadTimer.c │ │ └── F12x_Timer2_16bitToggle.c │ ├── UART │ │ ├── F12x_UART0_Interrupt.c │ │ ├── F12x_UART1_Interrupt.c │ │ └── F12x_UARTs_STDIO_Polled_2UARTs.c │ └── Watchdog │ │ └── F12x_Watchdog.c ├── C8051F2xx │ ├── Blinky │ │ ├── C8051F200.INC │ │ ├── F2xx_Blinky.asm │ │ ├── F2xx_Blinky.c │ │ ├── F2xx_Blinky_Asm.wsp │ │ ├── F2xx_Blinky_C.wsp │ │ ├── c8051F200.h │ │ └── c8051F200_defs.h │ ├── Comparators │ │ └── F2xx_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051F200.INC │ │ ├── c8051F200.h │ │ └── c8051F200_defs.h │ ├── Interrupts │ │ └── F2xx_External_Interrupts.c │ ├── Oscillators │ │ ├── F2xx_Oscillator_CMOS.c │ │ └── F2xx_Oscillator_Crystal.c │ ├── PortIO │ │ └── F2xx_Ports_SwitchLED.c │ ├── SPI │ │ ├── F2xx_SPI0_EEPROM_Polled_Mode.c │ │ ├── F2xx_SPI0_Master.c │ │ └── F2xx_SPI0_Slave.c │ ├── Timers │ │ ├── F2xx_Timer0_13bitExtTimer.c │ │ ├── F2xx_Timer0_13bitTimer.c │ │ ├── F2xx_Timer0_16bitTimer.c │ │ ├── F2xx_Timer0_8bitReloadTimer.c │ │ ├── F2xx_Timer0_two_8bitTimers.c │ │ ├── F2xx_Timer2_16bitCaptureTimer.c │ │ └── F2xx_Timer2_16bitReloadTimer.c │ ├── UART │ │ ├── F2xx_UART0_Interrupt.c │ │ └── F2xx_UART0_STDIO.c │ └── Watchdog │ │ └── F2xx_Watchdog.c ├── C8051F30x │ ├── ADC │ │ ├── F30x_ADC0_ExternalInput.c │ │ ├── F30x_ADC0_ExternalInput_Mux.c │ │ └── F30x_ADC0_TempSensor.asm │ ├── Blinky │ │ ├── C8051F300.INC │ │ ├── C8051F300_defs.h │ │ ├── F30x_Blinky.asm │ │ ├── F30x_Blinky.c │ │ ├── F30x_Blinky_Asm.wsp │ │ ├── F30x_Blinky_C.wsp │ │ └── c8051F300.h │ ├── Comparators │ │ └── F30x_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051F300.INC │ │ ├── C8051F300_defs.h │ │ └── c8051F300.h │ ├── Interrupts │ │ └── F30x_External_Interrupts.c │ ├── Oscillators │ │ ├── F30x_Oscillator_CMOS.c │ │ ├── F30x_Oscillator_Capacitor.c │ │ ├── F30x_Oscillator_Crystal.c │ │ └── F30x_Oscillator_RC.c │ ├── PCA │ │ ├── F30x_PCA0_16Bit_PWM_Output.c │ │ ├── F30x_PCA0_8Bit_PWM_Output.c │ │ ├── F30x_PCA0_Capture_Input.c │ │ ├── F30x_PCA0_Frequency_Output.c │ │ ├── F30x_PCA0_High_Speed_Output.c │ │ └── F30x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F30x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F30x_SMBus_EEPROM.c │ │ ├── F30x_SMBus_Master.c │ │ ├── F30x_SMBus_Master_Multibyte.c │ │ ├── F30x_SMBus_Multimaster.c │ │ ├── F30x_SMBus_Slave.c │ │ └── F30x_SMBus_Slave_Multibyte.c │ ├── Timers │ │ ├── F30x_Timer0_13bitExtTimer.c │ │ ├── F30x_Timer0_13bitTimer.c │ │ ├── F30x_Timer0_16bitTimer.c │ │ ├── F30x_Timer0_8bitReloadTimer.c │ │ ├── F30x_Timer0_two_8bitTimers.c │ │ ├── F30x_Timer2_16bitReloadTimer.c │ │ └── F30x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F30x_UART0_Interrupt.c │ │ └── F30x_UART_STDIO.c │ └── Watchdog │ │ └── F30x_Watchdog.c ├── C8051F31x │ ├── ADC │ │ ├── F31x_ADC0_ExternalInput.c │ │ └── F31x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F310.INC │ │ ├── C8051F310_defs.h │ │ ├── F31x_Blinky.asm │ │ ├── F31x_Blinky.c │ │ ├── F31x_Blinky_Asm.wsp │ │ ├── F31x_Blinky_C.wsp │ │ └── c8051F310.h │ ├── Comparators │ │ └── F31x_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051F310.INC │ │ ├── C8051F310_defs.h │ │ └── c8051F310.h │ ├── Interrupts │ │ └── F31x_External_Interrupts.c │ ├── Oscillators │ │ ├── F31x_Oscillator_CMOS.c │ │ ├── F31x_Oscillator_Capacitor.c │ │ ├── F31x_Oscillator_Crystal.c │ │ └── F31x_Oscillator_RC.c │ ├── PCA │ │ ├── F31x_PCA0_16Bit_PWM_Output.c │ │ ├── F31x_PCA0_8Bit_PWM_Output.c │ │ ├── F31x_PCA0_Capture_Input.c │ │ ├── F31x_PCA0_Frequency_Output.c │ │ ├── F31x_PCA0_High_Speed_Output.c │ │ └── F31x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F31x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F31x_SMBus_EEPROM.c │ │ ├── F31x_SMBus_Master.c │ │ ├── F31x_SMBus_Master_Multibyte.c │ │ ├── F31x_SMBus_Multimaster.c │ │ ├── F31x_SMBus_Slave.c │ │ └── F31x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F31x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F31x_SPI0_Master.c │ │ └── F31x_SPI0_Slave.c │ ├── Timers │ │ ├── F31x_Timer0_13bitExtTimer.c │ │ ├── F31x_Timer0_13bitTimer.c │ │ ├── F31x_Timer0_16bitTimer.c │ │ ├── F31x_Timer0_8bitReloadTimer.c │ │ ├── F31x_Timer0_two_8bitTimers.c │ │ ├── F31x_Timer2_16bitReloadTimer.c │ │ └── F31x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F31x_UART0_Interrupt.c │ │ └── F31x_UART_STDIO.c │ └── Watchdog │ │ └── F31x_Watchdog.c ├── C8051F320_1 │ ├── ADC │ │ ├── F32x_ADC0_ExternalInput.c │ │ └── F32x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F320.INC │ │ ├── C8051F320_defs.h │ │ ├── F320_Blinky.asm │ │ ├── F320_Blinky.c │ │ ├── F320_Blinky_Asm.wsp │ │ ├── F320_Blinky_C.wsp │ │ ├── c8051F320.h │ │ └── compiler_defs.h │ ├── Comparators │ │ └── F32x_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051F320.INC │ │ ├── C8051F320_defs.h │ │ ├── c8051F320.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F32x_External_Interrupts.c │ ├── Oscillators │ │ ├── F32x_Clock_Multiplier.c │ │ ├── F32x_Oscillator_CMOS.c │ │ ├── F32x_Oscillator_Capacitor.c │ │ ├── F32x_Oscillator_Crystal.c │ │ └── F32x_Oscillator_RC.c │ ├── PCA │ │ ├── F32x_PCA0_16Bit_PWM_Output.c │ │ ├── F32x_PCA0_8Bit_PWM_Output.c │ │ ├── F32x_PCA0_Capture_Input.c │ │ ├── F32x_PCA0_Frequency_Output.c │ │ ├── F32x_PCA0_High_Speed_Output.c │ │ └── F32x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F32x_Ports_SwitchesLEDs.c │ ├── SMBus │ │ ├── F32x_SMBus_EEPROM.c │ │ ├── F32x_SMBus_Master.c │ │ ├── F32x_SMBus_Master_Multibyte.c │ │ ├── F32x_SMBus_Multimaster.c │ │ ├── F32x_SMBus_Slave.c │ │ └── F32x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F32x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F32x_SPI0_Master.c │ │ └── F32x_SPI0_Slave.c │ ├── Timers │ │ ├── F32x_Timer0_13bitExtTimer.c │ │ ├── F32x_Timer0_13bitTimer.c │ │ ├── F32x_Timer0_16bitTimer.c │ │ ├── F32x_Timer0_8bitReloadTimer.c │ │ ├── F32x_Timer0_two_8bitTimers.c │ │ ├── F32x_Timer2_16bitReloadTimer.c │ │ └── F32x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F32x_UART0_Interrupt.c │ │ └── F32x_UART_STDIO.c │ ├── USB_Bulk │ │ ├── Driver_Source │ │ │ ├── Bulk Driver Reference Manual.pdf │ │ │ ├── ReadMe.txt │ │ │ ├── bulkdev.c │ │ │ ├── bulkdev.h │ │ │ ├── bulkpnp.c │ │ │ ├── bulkpnp.h │ │ │ ├── bulkpwr.c │ │ │ ├── bulkpwr.h │ │ │ ├── bulkrwr.c │ │ │ ├── bulkrwr.h │ │ │ ├── bulkusb.bmf │ │ │ ├── bulkusb.c │ │ │ ├── bulkusb.h │ │ │ ├── bulkusb.mof │ │ │ ├── bulkusb.rc │ │ │ ├── bulkusr.h │ │ │ ├── bulkwdm98.c │ │ │ ├── bulkwdm98.cpp │ │ │ ├── bulkwdm98.h │ │ │ ├── bulkwmi.c │ │ │ ├── bulkwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ ├── sources │ │ │ └── sources.txt │ │ ├── F32x_BulkFileTransfer.exe │ │ ├── Firmware │ │ │ ├── F32x_USB0_Bulk.wsp │ │ │ ├── F32x_USB_Config.h │ │ │ ├── F32x_USB_Descriptors.c │ │ │ ├── F32x_USB_Descriptors.h │ │ │ ├── F32x_USB_ISR.c │ │ │ ├── F32x_USB_Main.c │ │ │ ├── F32x_USB_Main.h │ │ │ ├── F32x_USB_Registers.h │ │ │ ├── F32x_USB_Request.h │ │ │ ├── F32x_USB_Standard_Requests.c │ │ │ ├── F32x_USB_Structs.h │ │ │ ├── F32x_USB_Utilities.c │ │ │ └── ReadMe.txt │ │ ├── Host Application Source │ │ │ ├── F32x_BulkFileTransfer.cpp │ │ │ ├── F32x_BulkFileTransfer.dsp │ │ │ ├── F32x_BulkFileTransfer.h │ │ │ ├── F32x_BulkFileTransfer.rc │ │ │ ├── F32x_BulkFileTransfer.sln │ │ │ ├── F32x_BulkFileTransfer.vcproj │ │ │ ├── F32x_BulkFileTransferDlg.cpp │ │ │ ├── F32x_BulkFileTransferDlg.h │ │ │ ├── F32x_BulkFileTransferFunctions.h │ │ │ ├── F32x_BulkTransferFunctions.cpp │ │ │ ├── Ioctls.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── F32x_BulkFileTransfer.rc2 │ │ │ │ ├── SilabsLogo.ico │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiBulk.sys │ │ └── SilabsBulk.inf │ ├── USB_HID │ │ ├── BlinkyExample │ │ │ ├── F3xx_Blink_Control.h │ │ │ ├── F3xx_Blink_Control_F320.c │ │ │ ├── F3xx_Blink_Control_F326.c │ │ │ ├── F3xx_Blink_Control_F340.c │ │ │ ├── F3xx_Blink_Control_F380.c │ │ │ ├── F3xx_Blink_Control_T620.c │ │ │ ├── F3xx_Blink_Control_T622.c │ │ │ ├── F3xx_BlinkyExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HID_Blinky.exe │ │ │ ├── Host │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ ├── HID_Blinky.h │ │ │ │ ├── HID_Blinky.rc │ │ │ │ ├── HID_Blinky.sln │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ ├── res │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ ├── FirmwareTemplate │ │ │ ├── F320_DEFAULT_CustomApp.c │ │ │ ├── F326_DEFAULT_CustomApp.c │ │ │ ├── F340_DEFAULT_CustomApp.c │ │ │ ├── F380_DEFAULT_CustomApp.c │ │ │ ├── F3xx_USB0_CustomApp.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_FirmwareTemplate.wsp │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ ├── T620_DEFAULT_CustomApp.c │ │ │ ├── T622_DEFAULT_CustomApp.c │ │ │ └── c8051f3xx.h │ │ ├── HIDtoUARTExample │ │ │ ├── F320_HIDtoUART.c │ │ │ ├── F3xx_HIDtoUART.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HIDtoUART.wsp │ │ │ ├── Host │ │ │ │ ├── HID_Blinky │ │ │ │ │ ├── HID_Blinky.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ │ │ ├── HID_Blinky.h │ │ │ │ │ │ ├── HID_Blinky.rc │ │ │ │ │ │ ├── HID_Blinky.sln │ │ │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ │ ├── res │ │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ └── HIDtoUART │ │ │ │ │ ├── HIDtoUART.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ ├── HIDtoUART.cpp │ │ │ │ │ ├── HIDtoUART.h │ │ │ │ │ ├── HIDtoUART.rc │ │ │ │ │ ├── HIDtoUART.sln │ │ │ │ │ ├── HIDtoUART.vcproj │ │ │ │ │ ├── HIDtoUART.vcproj.vspscc │ │ │ │ │ ├── HIDtoUART.vssscc │ │ │ │ │ ├── HIDtoUARTDlg.cpp │ │ │ │ │ ├── HIDtoUARTDlg.h │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ ├── res │ │ │ │ │ ├── HIDtoUART.ico │ │ │ │ │ └── HIDtoUART.rc2 │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ └── MouseExample │ │ │ ├── F320_USB0_Mouse.c │ │ │ ├── F326_USB0_Mouse.c │ │ │ ├── F340_USB0_Mouse.c │ │ │ ├── F3xx_MouseExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Mouse.h │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ ├── USB_Interrupt │ │ ├── Driver_Source │ │ │ ├── ReadMe.txt │ │ │ ├── intdev.c │ │ │ ├── intdev.h │ │ │ ├── intpnp.c │ │ │ ├── intpnp.h │ │ │ ├── intpwr.c │ │ │ ├── intpwr.h │ │ │ ├── intrwr.c │ │ │ ├── intrwr.h │ │ │ ├── intusb.bmf │ │ │ ├── intusb.c │ │ │ ├── intusb.h │ │ │ ├── intusb.mof │ │ │ ├── intusb.rc │ │ │ ├── intusr.h │ │ │ ├── intwdm98.c │ │ │ ├── intwdm98.h │ │ │ ├── intwmi.c │ │ │ ├── intwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ └── sources │ │ ├── Firmware │ │ │ ├── F32x_USB0_Interrupt.wsp │ │ │ ├── F32x_USB_Descriptor.c │ │ │ ├── F32x_USB_Descriptor.h │ │ │ ├── F32x_USB_ISR.c │ │ │ ├── F32x_USB_Main.c │ │ │ ├── F32x_USB_Main.h │ │ │ ├── F32x_USB_Register.h │ │ │ ├── F32x_USB_Standard_Requests.c │ │ │ ├── Interrupt Firmware Reference Manual.pdf │ │ │ └── ReadMe.txt │ │ ├── Host Application Source │ │ │ ├── 3DMeterCtrl.cpp │ │ │ ├── 3DMeterCtrl.h │ │ │ ├── DynLED.h │ │ │ ├── DynamicLED.cpp │ │ │ ├── DynamicLED.h │ │ │ ├── MemDC.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── USBTest.cpp │ │ │ ├── USBTest.dsp │ │ │ ├── USBTest.h │ │ │ ├── USBTest.rc │ │ │ ├── USBTest.sln │ │ │ ├── USBTest.vcproj │ │ │ ├── USBTestDlg.cpp │ │ │ ├── USBTestDlg.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── SilabsLogo.ico │ │ │ │ ├── Thumbs.db │ │ │ │ ├── USBTest.rc2 │ │ │ │ ├── bitmap1.bmp │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiInt.sys │ │ ├── SilabsInt.inf │ │ └── USBTest.exe │ └── Watchdog │ │ └── F32x_Watchdog.c ├── C8051F326_7 │ ├── Blinky │ │ ├── C8051F326.INC │ │ ├── C8051F326_defs.h │ │ ├── F326_Blinky.asm │ │ ├── F326_Blinky.c │ │ ├── F326_Blinky_Asm.wsp │ │ ├── F326_Blinky_C.wsp │ │ └── c8051F326.h │ ├── Header_Files │ │ ├── C8051F326.INC │ │ ├── C8051F326_defs.h │ │ └── c8051F326.h │ ├── Interrupts │ │ └── F326_External_Interrupts.c │ ├── Oscillators │ │ ├── F326_Clock_Multiplier.c │ │ ├── F326_LFO_Idle.c │ │ └── F326_Oscillator_CMOS.c │ ├── PortIO │ │ └── F326_Ports_SwitchesLEDs.c │ ├── Timers │ │ ├── F326_Timer0_13bitTimer.c │ │ ├── F326_Timer0_16bitTimer.c │ │ ├── F326_Timer0_8bitReloadTimer.c │ │ └── F326_Timer0_two_8bitTimers.c │ ├── UART │ │ ├── F326_UART0_Interrupt.c │ │ └── F326_UART0_STDIO.c │ ├── USB_Bulk │ │ ├── Driver_Source │ │ │ ├── Bulk Driver Reference Manual.pdf │ │ │ ├── ReadMe.txt │ │ │ ├── bulkdev.c │ │ │ ├── bulkdev.h │ │ │ ├── bulkpnp.c │ │ │ ├── bulkpnp.h │ │ │ ├── bulkpwr.c │ │ │ ├── bulkpwr.h │ │ │ ├── bulkrwr.c │ │ │ ├── bulkrwr.h │ │ │ ├── bulkusb.bmf │ │ │ ├── bulkusb.c │ │ │ ├── bulkusb.h │ │ │ ├── bulkusb.mof │ │ │ ├── bulkusb.rc │ │ │ ├── bulkusr.h │ │ │ ├── bulkwdm98.c │ │ │ ├── bulkwdm98.cpp │ │ │ ├── bulkwdm98.h │ │ │ ├── bulkwmi.c │ │ │ ├── bulkwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ ├── sources │ │ │ └── sources.txt │ │ ├── F32x_BulkFileTransfer.exe │ │ ├── Firmware │ │ │ ├── F326_USB_Bulk.wsp │ │ │ ├── F326_USB_Config.h │ │ │ ├── F326_USB_Descriptors.c │ │ │ ├── F326_USB_Descriptors.h │ │ │ ├── F326_USB_ISR.c │ │ │ ├── F326_USB_Main.c │ │ │ ├── F326_USB_Main.h │ │ │ ├── F326_USB_Registers.h │ │ │ ├── F326_USB_Request.h │ │ │ ├── F326_USB_Standard_Requests.c │ │ │ ├── F326_USB_Structs.h │ │ │ ├── F326_USB_Utilities.c │ │ │ └── ReadMe.txt │ │ ├── Host Application Source │ │ │ ├── F32x_BulkFileTransfer.cpp │ │ │ ├── F32x_BulkFileTransfer.dsp │ │ │ ├── F32x_BulkFileTransfer.h │ │ │ ├── F32x_BulkFileTransfer.rc │ │ │ ├── F32x_BulkFileTransfer.sln │ │ │ ├── F32x_BulkFileTransfer.vcproj │ │ │ ├── F32x_BulkFileTransferDlg.cpp │ │ │ ├── F32x_BulkFileTransferDlg.h │ │ │ ├── F32x_BulkFileTransferFunctions.h │ │ │ ├── F32x_BulkTransferFunctions.cpp │ │ │ ├── Ioctls.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── F32x_BulkFileTransfer.rc2 │ │ │ │ ├── SilabsLogo.ico │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiBulk.sys │ │ └── SilabsBulk.inf │ ├── USB_HID │ │ ├── BlinkyExample │ │ │ ├── F3xx_Blink_Control.h │ │ │ ├── F3xx_Blink_Control_F320.c │ │ │ ├── F3xx_Blink_Control_F326.c │ │ │ ├── F3xx_Blink_Control_F340.c │ │ │ ├── F3xx_Blink_Control_F380.c │ │ │ ├── F3xx_Blink_Control_T620.c │ │ │ ├── F3xx_Blink_Control_T622.c │ │ │ ├── F3xx_BlinkyExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HID_Blinky.exe │ │ │ ├── Host │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ ├── HID_Blinky.h │ │ │ │ ├── HID_Blinky.rc │ │ │ │ ├── HID_Blinky.sln │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ ├── res │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ ├── FirmwareTemplate │ │ │ ├── F320_DEFAULT_CustomApp.c │ │ │ ├── F326_DEFAULT_CustomApp.c │ │ │ ├── F340_DEFAULT_CustomApp.c │ │ │ ├── F380_DEFAULT_CustomApp.c │ │ │ ├── F3xx_USB0_CustomApp.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_FirmwareTemplate.wsp │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ ├── T620_DEFAULT_CustomApp.c │ │ │ ├── T622_DEFAULT_CustomApp.c │ │ │ └── c8051f3xx.h │ │ ├── HIDtoUARTExample │ │ │ ├── F326_HIDtoUART.c │ │ │ ├── F3xx_HIDtoUART.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HIDtoUART.wsp │ │ │ ├── Host │ │ │ │ ├── HID_Blinky │ │ │ │ │ ├── HID_Blinky.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ │ │ ├── HID_Blinky.h │ │ │ │ │ │ ├── HID_Blinky.rc │ │ │ │ │ │ ├── HID_Blinky.sln │ │ │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ │ ├── res │ │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ └── HIDtoUART │ │ │ │ │ ├── HIDtoUART.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ ├── HIDtoUART.cpp │ │ │ │ │ ├── HIDtoUART.h │ │ │ │ │ ├── HIDtoUART.rc │ │ │ │ │ ├── HIDtoUART.sln │ │ │ │ │ ├── HIDtoUART.vcproj │ │ │ │ │ ├── HIDtoUART.vcproj.vspscc │ │ │ │ │ ├── HIDtoUART.vssscc │ │ │ │ │ ├── HIDtoUARTDlg.cpp │ │ │ │ │ ├── HIDtoUARTDlg.h │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ ├── res │ │ │ │ │ ├── HIDtoUART.ico │ │ │ │ │ └── HIDtoUART.rc2 │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ └── MouseExample │ │ │ ├── F320_USB0_Mouse.c │ │ │ ├── F326_USB0_Mouse.c │ │ │ ├── F340_USB0_Mouse.c │ │ │ ├── F3xx_MouseExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Mouse.h │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ └── USB_Interrupt │ │ ├── Driver_Source │ │ ├── ReadMe.txt │ │ ├── intdev.c │ │ ├── intdev.h │ │ ├── intpnp.c │ │ ├── intpnp.h │ │ ├── intpwr.c │ │ ├── intpwr.h │ │ ├── intrwr.c │ │ ├── intrwr.h │ │ ├── intusb.bmf │ │ ├── intusb.c │ │ ├── intusb.h │ │ ├── intusb.mof │ │ ├── intusb.rc │ │ ├── intusr.h │ │ ├── intwdm98.c │ │ ├── intwdm98.h │ │ ├── intwmi.c │ │ ├── intwmi.h │ │ ├── makefile │ │ ├── makefile.inc │ │ ├── resource.h │ │ └── sources │ │ ├── Firmware │ │ ├── F326_USB_Descriptor.c │ │ ├── F326_USB_Descriptor.h │ │ ├── F326_USB_ISR.c │ │ ├── F326_USB_Interrupt.wsp │ │ ├── F326_USB_Main.c │ │ ├── F326_USB_Main.h │ │ ├── F326_USB_Register.h │ │ ├── F326_USB_Standard_Requests.c │ │ ├── Interrupt Firmware Reference Manual.pdf │ │ └── ReadMe.txt │ │ ├── Host Application Source │ │ ├── 3DMeterCtrl.cpp │ │ ├── 3DMeterCtrl.h │ │ ├── DynLED.h │ │ ├── DynamicLED.cpp │ │ ├── DynamicLED.h │ │ ├── MemDC.h │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── USBTest.cpp │ │ ├── USBTest.dsp │ │ ├── USBTest.h │ │ ├── USBTest.rc │ │ ├── USBTest.sln │ │ ├── USBTest.vcproj │ │ ├── USBTestDlg.cpp │ │ ├── USBTestDlg.h │ │ ├── UsbIF.cpp │ │ ├── UsbIF.h │ │ ├── res │ │ │ ├── SilabsLogo.ico │ │ │ ├── Thumbs.db │ │ │ ├── USBTest.rc2 │ │ │ ├── bitmap1.bmp │ │ │ └── blackchip.ico │ │ ├── resource.h │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiInt.sys │ │ ├── SilabsInt.inf │ │ └── USBTest.exe ├── C8051F330_5 │ ├── ADC │ │ ├── F33x_ADC0_ExternalInput.c │ │ └── F33x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F330.INC │ │ ├── C8051F330_defs.h │ │ ├── F330_Blinky.asm │ │ ├── F330_Blinky.c │ │ ├── F330_Blinky_Asm.wsp │ │ ├── F330_Blinky_C.wsp │ │ └── c8051F330.h │ ├── Comparators │ │ └── F33x_Comparator0_ResetSource.c │ ├── DAC │ │ └── F33x_IDA0_SineWave.c │ ├── Header_Files │ │ ├── C8051F330.INC │ │ ├── C8051F330_defs.h │ │ └── c8051F330.h │ ├── Interrupts │ │ └── F33x_External_Interrupts.c │ ├── Oscillators │ │ ├── F33x_LFO_Idle.c │ │ ├── F33x_Oscillator_CMOS.c │ │ ├── F33x_Oscillator_Capacitor.c │ │ ├── F33x_Oscillator_Crystal.c │ │ └── F33x_Oscillator_RC.c │ ├── PCA │ │ ├── F33x_PCA0_16Bit_PWM_Output.c │ │ ├── F33x_PCA0_8Bit_PWM_Output.c │ │ ├── F33x_PCA0_Capture_Input.c │ │ ├── F33x_PCA0_Frequency_Output.c │ │ ├── F33x_PCA0_High_Speed_Output.c │ │ └── F33x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F33x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F33x_SMBus_EEPROM.c │ │ ├── F33x_SMBus_Master.c │ │ ├── F33x_SMBus_Master_Multibyte.c │ │ ├── F33x_SMBus_Multimaster.c │ │ ├── F33x_SMBus_Slave.c │ │ └── F33x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F33x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F33x_SPI0_Master.c │ │ └── F33x_SPI0_Slave.c │ ├── Timers │ │ ├── F33x_Timer0_13bitExtTimer.c │ │ ├── F33x_Timer0_13bitTimer.c │ │ ├── F33x_Timer0_16bitTimer.c │ │ ├── F33x_Timer0_8bitReloadTimer.c │ │ ├── F33x_Timer0_two_8bitTimers.c │ │ ├── F33x_Timer2_16bitReloadTimer.c │ │ └── F33x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F33x_UART0_Interrupt.c │ │ └── F33x_UART_STDIO.c │ └── Watchdog │ │ └── F33x_Watchdog.c ├── C8051F336_9 │ ├── ADC │ │ ├── F336_ADC0_ExternalInput.c │ │ └── F336_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F336.INC │ │ ├── C8051F336_defs.h │ │ ├── F336_Blinky.asm │ │ ├── F336_Blinky.c │ │ ├── F336_Blinky_Asm.wsp │ │ ├── F336_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── Comparators │ │ └── F336_Comparator0_ResetSource.c │ ├── DAC │ │ └── F336_IDA0_SineWave.c │ ├── Header_Files │ │ ├── C8051F336.INC │ │ ├── C8051F336_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F336_External_Interrupts.c │ ├── Oscillators │ │ ├── F336_LFO_Idle.c │ │ ├── F336_Oscillator_CMOS.c │ │ ├── F336_Oscillator_Capacitor.c │ │ ├── F336_Oscillator_Crystal.c │ │ └── F336_Oscillator_RC.c │ ├── PCA │ │ ├── F336_PCA0_16Bit_PWM_Output.c │ │ ├── F336_PCA0_8Bit_PWM_Output.c │ │ ├── F336_PCA0_Capture_Input.c │ │ ├── F336_PCA0_Frequency_Output.c │ │ ├── F336_PCA0_High_Speed_Output.c │ │ └── F336_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F336_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F336_SMBus_EEPROM.c │ │ ├── F336_SMBus_Master.c │ │ ├── F336_SMBus_Master_Multibyte.c │ │ ├── F336_SMBus_Slave.c │ │ ├── F336_SMBus_Slave_Multibyte.c │ │ └── F336_SMBus_Slave_Multibyte_HWACK.c │ ├── SPI │ │ ├── F336_SPI0_EEPROM_Polled_Mode.c │ │ ├── F336_SPI0_Master.c │ │ └── F336_SPI0_Slave.c │ ├── Timers │ │ ├── F336_Timer0_13bitExtTimer.c │ │ ├── F336_Timer0_13bitTimer.c │ │ ├── F336_Timer0_16bitTimer.c │ │ ├── F336_Timer0_8bitReloadTimer.c │ │ ├── F336_Timer0_two_8bitTimers.c │ │ ├── F336_Timer2_16bitReloadTimer.c │ │ └── F336_Timer2_two_8bitTimers.c │ ├── TouchSense_Switch │ │ └── F338_TouchSense_Switch.c │ ├── UART │ │ ├── F336_UART0_Interrupt.c │ │ └── F336_UART0_STDIO.c │ └── Watchdog │ │ └── F336_Watchdog.c ├── C8051F34x │ ├── ADC │ │ ├── F34x_ADC0_ExternalInput.c │ │ └── F34x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F340.INC │ │ ├── C8051F340_defs.h │ │ ├── F34x_Blinky.asm │ │ ├── F34x_Blinky.c │ │ ├── F34x_Blinky_Asm.wsp │ │ ├── F34x_Blinky_C.wsp │ │ └── c8051F340.h │ ├── Comparators │ │ └── F34x_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051F340.INC │ │ ├── C8051F340_defs.h │ │ └── c8051F340.h │ ├── Interrupts │ │ └── F34x_External_Interrupts.c │ ├── Oscillators │ │ ├── F34x_Clock_Multiplier.c │ │ ├── F34x_LFO_Idle.c │ │ ├── F34x_Oscillator_CMOS.c │ │ ├── F34x_Oscillator_Capacitor.c │ │ ├── F34x_Oscillator_Crystal.c │ │ └── F34x_Oscillator_RC.c │ ├── PCA │ │ ├── F34x_PCA0_16Bit_PWM_Output.c │ │ ├── F34x_PCA0_8Bit_PWM_Output.c │ │ ├── F34x_PCA0_Capture_Input.c │ │ ├── F34x_PCA0_Frequency_Output.c │ │ ├── F34x_PCA0_High_Speed_Output.c │ │ └── F34x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F34x_Ports_SwitchesLEDs.c │ ├── SMBus │ │ ├── F34x_SMBus_EEPROM.c │ │ ├── F34x_SMBus_Master.c │ │ ├── F34x_SMBus_Master_Multibyte.c │ │ ├── F34x_SMBus_Multimaster.c │ │ ├── F34x_SMBus_Slave.c │ │ └── F34x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F34x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F34x_SPI0_Master.c │ │ └── F34x_SPI0_Slave.c │ ├── Timers │ │ ├── F34x_Timer0_13bitExtTimer.c │ │ ├── F34x_Timer0_13bitTimer.c │ │ ├── F34x_Timer0_16bitTimer.c │ │ ├── F34x_Timer0_8bitReloadTimer.c │ │ ├── F34x_Timer0_two_8bitTimers.c │ │ ├── F34x_Timer2_16bitReloadTimer.c │ │ └── F34x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F34x_UART0_Interrupt.c │ │ ├── F34x_UART_MultiUART.c │ │ └── F34x_UART_STDIO.c │ ├── USB_Bulk │ │ ├── Driver_Source │ │ │ ├── Bulk Driver Reference Manual.pdf │ │ │ ├── ReadMe.txt │ │ │ ├── bulkdev.c │ │ │ ├── bulkdev.h │ │ │ ├── bulkpnp.c │ │ │ ├── bulkpnp.h │ │ │ ├── bulkpwr.c │ │ │ ├── bulkpwr.h │ │ │ ├── bulkrwr.c │ │ │ ├── bulkrwr.h │ │ │ ├── bulkusb.bmf │ │ │ ├── bulkusb.c │ │ │ ├── bulkusb.h │ │ │ ├── bulkusb.mof │ │ │ ├── bulkusb.rc │ │ │ ├── bulkusr.h │ │ │ ├── bulkwdm98.c │ │ │ ├── bulkwdm98.cpp │ │ │ ├── bulkwdm98.h │ │ │ ├── bulkwmi.c │ │ │ ├── bulkwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ ├── sources │ │ │ └── sources.txt │ │ ├── F32x_BulkFileTransfer.exe │ │ ├── Firmware │ │ │ ├── F34x_USB0_Bulk.wsp │ │ │ ├── F34x_USB_Config.h │ │ │ ├── F34x_USB_Descriptors.c │ │ │ ├── F34x_USB_Descriptors.h │ │ │ ├── F34x_USB_ISR.c │ │ │ ├── F34x_USB_Main.c │ │ │ ├── F34x_USB_Main.h │ │ │ ├── F34x_USB_Registers.h │ │ │ ├── F34x_USB_Request.h │ │ │ ├── F34x_USB_Standard_Requests.c │ │ │ ├── F34x_USB_Structs.h │ │ │ ├── F34x_USB_Utilities.c │ │ │ └── ReadMe.txt │ │ ├── Host Application Source │ │ │ ├── F32x_BulkFileTransfer.cpp │ │ │ ├── F32x_BulkFileTransfer.dsp │ │ │ ├── F32x_BulkFileTransfer.h │ │ │ ├── F32x_BulkFileTransfer.rc │ │ │ ├── F32x_BulkFileTransfer.sln │ │ │ ├── F32x_BulkFileTransfer.vcproj │ │ │ ├── F32x_BulkFileTransferDlg.cpp │ │ │ ├── F32x_BulkFileTransferDlg.h │ │ │ ├── F32x_BulkFileTransferFunctions.h │ │ │ ├── F32x_BulkTransferFunctions.cpp │ │ │ ├── Ioctls.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── F32x_BulkFileTransfer.rc2 │ │ │ │ ├── SilabsLogo.ico │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiBulk.sys │ │ └── SilabsBulk.inf │ ├── USB_HID │ │ ├── BlinkyExample │ │ │ ├── F3xx_Blink_Control.h │ │ │ ├── F3xx_Blink_Control_F320.c │ │ │ ├── F3xx_Blink_Control_F326.c │ │ │ ├── F3xx_Blink_Control_F340.c │ │ │ ├── F3xx_Blink_Control_F380.c │ │ │ ├── F3xx_Blink_Control_T620.c │ │ │ ├── F3xx_Blink_Control_T622.c │ │ │ ├── F3xx_BlinkyExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HID_Blinky.exe │ │ │ ├── Host │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ ├── HID_Blinky.h │ │ │ │ ├── HID_Blinky.rc │ │ │ │ ├── HID_Blinky.sln │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ ├── res │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ ├── FirmwareTemplate │ │ │ ├── F320_DEFAULT_CustomApp.c │ │ │ ├── F326_DEFAULT_CustomApp.c │ │ │ ├── F340_DEFAULT_CustomApp.c │ │ │ ├── F380_DEFAULT_CustomApp.c │ │ │ ├── F3xx_USB0_CustomApp.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_FirmwareTemplate.wsp │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ ├── T620_DEFAULT_CustomApp.c │ │ │ ├── T622_DEFAULT_CustomApp.c │ │ │ └── c8051f3xx.h │ │ ├── HIDtoUARTExample │ │ │ ├── F340_HIDtoUART.c │ │ │ ├── F3xx_HIDtoUART.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HIDtoUART.wsp │ │ │ ├── Host │ │ │ │ ├── HID_Blinky │ │ │ │ │ ├── HID_Blinky.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ │ │ ├── HID_Blinky.h │ │ │ │ │ │ ├── HID_Blinky.rc │ │ │ │ │ │ ├── HID_Blinky.sln │ │ │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ │ ├── res │ │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ └── HIDtoUART │ │ │ │ │ ├── HIDtoUART.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ ├── HIDtoUART.cpp │ │ │ │ │ ├── HIDtoUART.h │ │ │ │ │ ├── HIDtoUART.rc │ │ │ │ │ ├── HIDtoUART.sln │ │ │ │ │ ├── HIDtoUART.vcproj │ │ │ │ │ ├── HIDtoUART.vcproj.vspscc │ │ │ │ │ ├── HIDtoUART.vssscc │ │ │ │ │ ├── HIDtoUARTDlg.cpp │ │ │ │ │ ├── HIDtoUARTDlg.h │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ ├── res │ │ │ │ │ ├── HIDtoUART.ico │ │ │ │ │ └── HIDtoUART.rc2 │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ └── MouseExample │ │ │ ├── F320_USB0_Mouse.c │ │ │ ├── F326_USB0_Mouse.c │ │ │ ├── F340_USB0_Mouse.c │ │ │ ├── F3xx_MouseExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Mouse.h │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ ├── USB_Interrupt │ │ ├── Driver_Source │ │ │ ├── ReadMe.txt │ │ │ ├── intdev.c │ │ │ ├── intdev.h │ │ │ ├── intpnp.c │ │ │ ├── intpnp.h │ │ │ ├── intpwr.c │ │ │ ├── intpwr.h │ │ │ ├── intrwr.c │ │ │ ├── intrwr.h │ │ │ ├── intusb.bmf │ │ │ ├── intusb.c │ │ │ ├── intusb.h │ │ │ ├── intusb.mof │ │ │ ├── intusb.rc │ │ │ ├── intusr.h │ │ │ ├── intwdm98.c │ │ │ ├── intwdm98.h │ │ │ ├── intwmi.c │ │ │ ├── intwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ └── sources │ │ ├── Firmware │ │ │ ├── F34x_USB0_Interrupt.wsp │ │ │ ├── F34x_USB_Descriptor.c │ │ │ ├── F34x_USB_Descriptor.h │ │ │ ├── F34x_USB_ISR.c │ │ │ ├── F34x_USB_Main.c │ │ │ ├── F34x_USB_Main.h │ │ │ ├── F34x_USB_Register.h │ │ │ ├── F34x_USB_Standard_Requests.c │ │ │ ├── Interrupt Firmware Reference Manual.pdf │ │ │ └── ReadMe.txt │ │ ├── Host Application Source │ │ │ ├── 3DMeterCtrl.cpp │ │ │ ├── 3DMeterCtrl.h │ │ │ ├── DynLED.h │ │ │ ├── DynamicLED.cpp │ │ │ ├── DynamicLED.h │ │ │ ├── MemDC.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── USBTest.cpp │ │ │ ├── USBTest.dsp │ │ │ ├── USBTest.h │ │ │ ├── USBTest.rc │ │ │ ├── USBTest.sln │ │ │ ├── USBTest.vcproj │ │ │ ├── USBTestDlg.cpp │ │ │ ├── USBTestDlg.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── SilabsLogo.ico │ │ │ │ ├── Thumbs.db │ │ │ │ ├── USBTest.rc2 │ │ │ │ ├── bitmap1.bmp │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiInt.sys │ │ ├── SilabsInt.inf │ │ └── USBTest.exe │ └── Watchdog │ │ └── F34x_Watchdog.c ├── C8051F35x │ ├── ADC │ │ ├── F35x_ADC0_Buffered.c │ │ └── F35x_ADC0_ExternalInput.c │ ├── Blinky │ │ ├── C8051F350.INC │ │ ├── F35x_Blinky.asm │ │ ├── F35x_Blinky.c │ │ ├── F35x_Blinky_Asm.wsp │ │ ├── F35x_Blinky_C.wsp │ │ ├── c8051F350.h │ │ ├── c8051F350_defs.h │ │ └── compiler_defs.h │ ├── Comparators │ │ └── F35x_Comparator0_ResetSource.c │ ├── DAC │ │ └── F35x_DACs_SineCosine.c │ ├── Header_Files │ │ ├── C8051F350.INC │ │ ├── c8051F350.h │ │ ├── c8051F350_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F35x_External_Interrupts.c │ ├── Oscillators │ │ ├── F35x_Oscillator_CMOS.c │ │ ├── F35x_Oscillator_Capacitor.c │ │ ├── F35x_Oscillator_Crystal.c │ │ └── F35x_Oscillator_RC.c │ ├── PCA │ │ ├── F35x_PCA0_16Bit_PWM_Output.c │ │ ├── F35x_PCA0_8Bit_PWM_Output.c │ │ ├── F35x_PCA0_Capture_Input.c │ │ ├── F35x_PCA0_Frequency_Output.c │ │ ├── F35x_PCA0_High_Speed_Output.c │ │ └── F35x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F35x_Ports_SwitchLEDs.c │ ├── SMBus │ │ ├── F35x_SMBus_EEPROM.c │ │ ├── F35x_SMBus_Master.c │ │ ├── F35x_SMBus_Master_Multibyte.c │ │ ├── F35x_SMBus_Multimaster.c │ │ ├── F35x_SMBus_Slave.c │ │ └── F35x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F35x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F35x_SPI0_Master.c │ │ └── F35x_SPI0_Slave.c │ ├── Timers │ │ ├── F35x_Timer0_13bitExtTimer.c │ │ ├── F35x_Timer0_13bitTimer.c │ │ ├── F35x_Timer0_16bitTimer.c │ │ ├── F35x_Timer0_8bitReloadTimer.c │ │ ├── F35x_Timer0_two_8bitTimers.c │ │ ├── F35x_Timer2_16bitReloadTimer.c │ │ └── F35x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F35x_UART0_Interrupt.c │ │ └── F35x_UART_STDIO.c │ └── Watchdog │ │ └── F35x_Watchdog.c ├── C8051F36x │ ├── ADC │ │ ├── F36x_ADC0_ExternalInput.c │ │ └── F36x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F360.h │ │ ├── C8051F360_defs.h │ │ ├── F36x_Blinky.asm │ │ ├── F36x_Blinky.c │ │ ├── F36x_Blinky_Asm.wsp │ │ ├── F36x_Blinky_C.wsp │ │ ├── c8051F360.INC │ │ └── compiler_defs.h │ ├── Comparators │ │ ├── F36x_Comparator0_ResetSource.c │ │ └── F36x_Comparator1_Blinky.c │ ├── DAC │ │ └── F36x_IDA0_SineWave.c │ ├── EMIF │ │ └── F36x_EMIF.c │ ├── Header_Files │ │ ├── C8051F360.h │ │ ├── C8051F360_defs.h │ │ ├── c8051F360.INC │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F36x_External_Interrupts.c │ ├── Oscillators │ │ ├── F36x_LFO_Idle.c │ │ ├── F36x_Oscillator_CMOS.c │ │ ├── F36x_Oscillator_Capacitor.c │ │ ├── F36x_Oscillator_Crystal.c │ │ ├── F36x_Oscillator_PLL.c │ │ ├── F36x_Oscillator_RC.c │ │ └── F36x_Oscillator_Suspend.c │ ├── PCA │ │ ├── F36x_PCA0_16Bit_PWM_Output.c │ │ ├── F36x_PCA0_8Bit_PWM_Output.c │ │ ├── F36x_PCA0_Capture_Input.c │ │ ├── F36x_PCA0_Frequency_Output.c │ │ ├── F36x_PCA0_High_Speed_Output.c │ │ └── F36x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── F36x_PortMatch.c │ │ └── F36x_Ports_SwitchesLEDs.c │ ├── SMBus │ │ ├── F36x_SMBus_EEPROM.c │ │ ├── F36x_SMBus_Master.c │ │ ├── F36x_SMBus_Master_Multibyte.c │ │ ├── F36x_SMBus_Multimaster.c │ │ ├── F36x_SMBus_Slave.c │ │ └── F36x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F36x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F36x_SPI0_Master.c │ │ └── F36x_SPI0_Slave.c │ ├── Timers │ │ ├── F36x_Timer0_13bitExtTimer.c │ │ ├── F36x_Timer0_13bitTimer.c │ │ ├── F36x_Timer0_16bitTimer.c │ │ ├── F36x_Timer0_8bitReloadTimer.c │ │ ├── F36x_Timer0_Two_8bitTimers.c │ │ ├── F36x_Timer2_16bitReloadTimer.c │ │ ├── F36x_Timer2_Two_8bitTimers.c │ │ ├── F36x_Timer3_16bitReloadTimer.c │ │ └── F36x_Timer3_Two_8bitTimers.c │ ├── UART │ │ ├── F36x_UART0_Interrupt.c │ │ └── F36x_UART_STDIO.c │ └── Watchdog │ │ └── F36x_Watchdog.c ├── C8051F38x │ ├── ADC │ │ ├── F38x_ADC0_ExternalInput.c │ │ └── F38x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F380.INC │ │ ├── C8051F380_defs.h │ │ ├── F38x_Blinky.asm │ │ ├── F38x_Blinky.c │ │ ├── F38x_Blinky_Asm.wsp │ │ ├── F38x_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── Comparators │ │ └── F38x_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051F380.INC │ │ ├── C8051F380_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F38x_External_Interrupts.c │ ├── Oscillators │ │ ├── F38x_Clock_Multiplier.c │ │ ├── F38x_LFO_Idle.c │ │ ├── F38x_Oscillator_CMOS.c │ │ ├── F38x_Oscillator_Capacitor.c │ │ ├── F38x_Oscillator_Crystal.c │ │ └── F38x_Oscillator_RC.c │ ├── PCA │ │ ├── F38x_PCA0_16Bit_PWM_Output.c │ │ ├── F38x_PCA0_8Bit_PWM_Output.c │ │ ├── F38x_PCA0_Capture_Input.c │ │ ├── F38x_PCA0_Frequency_Output.c │ │ ├── F38x_PCA0_High_Speed_Output.c │ │ └── F38x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F38x_Ports_SwitchesLEDs.c │ ├── SMBus │ │ ├── F38x_SMBus_EEPROM.c │ │ ├── F38x_SMBus_Master.c │ │ ├── F38x_SMBus_Master_Multibyte.c │ │ ├── F38x_SMBus_Multimaster.c │ │ ├── F38x_SMBus_Slave.c │ │ └── F38x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F38x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F38x_SPI0_Master.c │ │ └── F38x_SPI0_Slave.c │ ├── Timers │ │ ├── F38x_Timer0_13bitExtTimer.c │ │ ├── F38x_Timer0_13bitTimer.c │ │ ├── F38x_Timer0_16bitTimer.c │ │ ├── F38x_Timer0_8bitReloadTimer.c │ │ ├── F38x_Timer0_two_8bitTimers.c │ │ ├── F38x_Timer2_16bitReloadTimer.c │ │ └── F38x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F38x_UART0_Interrupt.c │ │ ├── F38x_UART_MultiUART.c │ │ └── F38x_UART_STDIO.c │ ├── USB_Bulk │ │ ├── Driver_Source │ │ │ ├── Bulk Driver Reference Manual.pdf │ │ │ ├── ReadMe.txt │ │ │ ├── bulkdev.c │ │ │ ├── bulkdev.h │ │ │ ├── bulkpnp.c │ │ │ ├── bulkpnp.h │ │ │ ├── bulkpwr.c │ │ │ ├── bulkpwr.h │ │ │ ├── bulkrwr.c │ │ │ ├── bulkrwr.h │ │ │ ├── bulkusb.bmf │ │ │ ├── bulkusb.c │ │ │ ├── bulkusb.h │ │ │ ├── bulkusb.mof │ │ │ ├── bulkusb.rc │ │ │ ├── bulkusr.h │ │ │ ├── bulkwdm98.c │ │ │ ├── bulkwdm98.cpp │ │ │ ├── bulkwdm98.h │ │ │ ├── bulkwmi.c │ │ │ ├── bulkwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ ├── sources │ │ │ └── sources.txt │ │ ├── F32x_BulkFileTransfer.exe │ │ ├── Firmware │ │ │ ├── F38x_USB0_Bulk.wsp │ │ │ ├── F38x_USB_Config.h │ │ │ ├── F38x_USB_Descriptors.c │ │ │ ├── F38x_USB_Descriptors.h │ │ │ ├── F38x_USB_ISR.c │ │ │ ├── F38x_USB_Main.c │ │ │ ├── F38x_USB_Main.h │ │ │ ├── F38x_USB_Registers.h │ │ │ ├── F38x_USB_Request.h │ │ │ ├── F38x_USB_Standard_Requests.c │ │ │ ├── F38x_USB_Structs.h │ │ │ ├── F38x_USB_Utilities.c │ │ │ └── ReadMe.txt │ │ ├── Host Application Source │ │ │ ├── F32x_BulkFileTransfer.cpp │ │ │ ├── F32x_BulkFileTransfer.dsp │ │ │ ├── F32x_BulkFileTransfer.h │ │ │ ├── F32x_BulkFileTransfer.rc │ │ │ ├── F32x_BulkFileTransfer.sln │ │ │ ├── F32x_BulkFileTransfer.vcproj │ │ │ ├── F32x_BulkFileTransferDlg.cpp │ │ │ ├── F32x_BulkFileTransferDlg.h │ │ │ ├── F32x_BulkFileTransferFunctions.h │ │ │ ├── F32x_BulkTransferFunctions.cpp │ │ │ ├── Ioctls.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── F32x_BulkFileTransfer.rc2 │ │ │ │ ├── SilabsLogo.ico │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiBulk.sys │ │ └── SilabsBulk.inf │ ├── USB_HID │ │ ├── BlinkyExample │ │ │ ├── F3xx_Blink_Control.h │ │ │ ├── F3xx_Blink_Control_F320.c │ │ │ ├── F3xx_Blink_Control_F326.c │ │ │ ├── F3xx_Blink_Control_F340.c │ │ │ ├── F3xx_Blink_Control_F380.c │ │ │ ├── F3xx_Blink_Control_T620.c │ │ │ ├── F3xx_Blink_Control_T622.c │ │ │ ├── F3xx_BlinkyExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HID_Blinky.exe │ │ │ ├── Host │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ ├── HID_Blinky.h │ │ │ │ ├── HID_Blinky.rc │ │ │ │ ├── HID_Blinky.sln │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ ├── res │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ ├── FirmwareTemplate │ │ │ ├── F320_DEFAULT_CustomApp.c │ │ │ ├── F326_DEFAULT_CustomApp.c │ │ │ ├── F340_DEFAULT_CustomApp.c │ │ │ ├── F380_DEFAULT_CustomApp.c │ │ │ ├── F3xx_USB0_CustomApp.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_FirmwareTemplate.wsp │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ ├── T620_DEFAULT_CustomApp.c │ │ │ ├── T622_DEFAULT_CustomApp.c │ │ │ └── c8051f3xx.h │ │ ├── HIDtoUARTExample │ │ │ ├── F380_HIDtoUART.c │ │ │ ├── F3xx_HIDtoUART.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HIDtoUART.wsp │ │ │ ├── Host │ │ │ │ ├── HID_Blinky │ │ │ │ │ ├── HID_Blinky.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ │ │ ├── HID_Blinky.h │ │ │ │ │ │ ├── HID_Blinky.rc │ │ │ │ │ │ ├── HID_Blinky.sln │ │ │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ │ ├── res │ │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ └── HIDtoUART │ │ │ │ │ ├── HIDtoUART.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ ├── HIDtoUART.cpp │ │ │ │ │ ├── HIDtoUART.h │ │ │ │ │ ├── HIDtoUART.rc │ │ │ │ │ ├── HIDtoUART.sln │ │ │ │ │ ├── HIDtoUART.vcproj │ │ │ │ │ ├── HIDtoUART.vcproj.vspscc │ │ │ │ │ ├── HIDtoUART.vssscc │ │ │ │ │ ├── HIDtoUARTDlg.cpp │ │ │ │ │ ├── HIDtoUARTDlg.h │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ ├── res │ │ │ │ │ ├── HIDtoUART.ico │ │ │ │ │ └── HIDtoUART.rc2 │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ └── MouseExample │ │ │ ├── F320_USB0_Mouse.c │ │ │ ├── F326_USB0_Mouse.c │ │ │ ├── F340_USB0_Mouse.c │ │ │ ├── F380_USB0_Mouse.c │ │ │ ├── F3xx_MouseExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Mouse.h │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ ├── T620_USB0_Mouse.c │ │ │ ├── T622_USB0_Mouse.c │ │ │ └── c8051f3xx.h │ ├── USB_Interrupt │ │ ├── Driver_Source │ │ │ ├── ReadMe.txt │ │ │ ├── intdev.c │ │ │ ├── intdev.h │ │ │ ├── intpnp.c │ │ │ ├── intpnp.h │ │ │ ├── intpwr.c │ │ │ ├── intpwr.h │ │ │ ├── intrwr.c │ │ │ ├── intrwr.h │ │ │ ├── intusb.bmf │ │ │ ├── intusb.c │ │ │ ├── intusb.h │ │ │ ├── intusb.mof │ │ │ ├── intusb.rc │ │ │ ├── intusr.h │ │ │ ├── intwdm98.c │ │ │ ├── intwdm98.h │ │ │ ├── intwmi.c │ │ │ ├── intwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ └── sources │ │ ├── Firmware │ │ │ ├── F38x_USB0_Interrupt.wsp │ │ │ ├── F38x_USB_Descriptor.c │ │ │ ├── F38x_USB_Descriptor.h │ │ │ ├── F38x_USB_ISR.c │ │ │ ├── F38x_USB_Main.c │ │ │ ├── F38x_USB_Main.h │ │ │ ├── F38x_USB_Register.h │ │ │ ├── F38x_USB_Standard_Requests.c │ │ │ ├── Interrupt Firmware Reference Manual.pdf │ │ │ └── ReadMe.txt │ │ ├── Host Application Source │ │ │ ├── 3DMeterCtrl.cpp │ │ │ ├── 3DMeterCtrl.h │ │ │ ├── DynLED.h │ │ │ ├── DynamicLED.cpp │ │ │ ├── DynamicLED.h │ │ │ ├── MemDC.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── USBTest.cpp │ │ │ ├── USBTest.dsp │ │ │ ├── USBTest.h │ │ │ ├── USBTest.rc │ │ │ ├── USBTest.sln │ │ │ ├── USBTest.vcproj │ │ │ ├── USBTestDlg.cpp │ │ │ ├── USBTestDlg.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── SilabsLogo.ico │ │ │ │ ├── Thumbs.db │ │ │ │ ├── USBTest.rc2 │ │ │ │ ├── bitmap1.bmp │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiInt.sys │ │ ├── SilabsInt.inf │ │ └── USBTest.exe │ └── Watchdog │ │ └── F38x_Watchdog.c ├── C8051F41x │ ├── ADC │ │ ├── F41x_ADC0_ExternalInput.c │ │ └── F41x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F410.INC │ │ ├── C8051F410_defs.h │ │ ├── F41x_Blinky.asm │ │ ├── F41x_Blinky.c │ │ ├── F41x_Blinky_Asm.wsp │ │ ├── F41x_Blinky_C.wsp │ │ └── c8051F410.h │ ├── CRC │ │ └── F41x_CRC.c │ ├── Comparators │ │ └── F41x_Comparator0_ResetSource.c │ ├── DAC │ │ └── F41x_DACs_SineCosine.c │ ├── Header_Files │ │ ├── C8051F410.INC │ │ ├── C8051F410_defs.h │ │ └── c8051F410.h │ ├── Interrupts │ │ └── F41x_External_Interrupts.c │ ├── Oscillators │ │ ├── F41x_Clock_Multiplier.c │ │ ├── F41x_Oscillator_CMOS.c │ │ ├── F41x_Oscillator_Capacitor.c │ │ ├── F41x_Oscillator_Crystal.c │ │ ├── F41x_Oscillator_RC.c │ │ └── F41x_RTC_Suspend.c │ ├── PCA │ │ ├── F41x_PCA0_16Bit_PWM_Output.c │ │ ├── F41x_PCA0_8Bit_PWM_Output.c │ │ ├── F41x_PCA0_Capture_Input.c │ │ ├── F41x_PCA0_Frequency_Output.c │ │ ├── F41x_PCA0_High_Speed_Output.c │ │ └── F41x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── F41x_PortMatch.c │ │ └── F41x_Ports_SwitchesLEDs.c │ ├── SMBus │ │ ├── F41x_SMBus_EEPROM.c │ │ ├── F41x_SMBus_Master.c │ │ ├── F41x_SMBus_Master_Multibyte.c │ │ ├── F41x_SMBus_Multimaster.c │ │ ├── F41x_SMBus_Slave.c │ │ └── F41x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F41x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F41x_SPI0_Master.c │ │ └── F41x_SPI0_Slave.c │ ├── Timers │ │ ├── F41x_Timer0_13bitExtTimer.c │ │ ├── F41x_Timer0_13bitTimer.c │ │ ├── F41x_Timer0_16bitTimer.c │ │ ├── F41x_Timer0_8bitReloadTimer.c │ │ ├── F41x_Timer0_two_8bitTimers.c │ │ ├── F41x_Timer2_16bitReloadTimer.c │ │ └── F41x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F41x_UART0_Interrupt.c │ │ └── F41x_UART_STDIO.c │ └── Watchdog │ │ └── F41x_Watchdog.c ├── C8051F50x_51x │ ├── ADC │ │ ├── F500_ADC0_ExternalInput.c │ │ └── F500_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F500.INC │ │ ├── C8051F500_defs.h │ │ ├── F50x_Blinky.asm │ │ ├── F50x_Blinky.c │ │ ├── F50x_Blinky_Asm.wsp │ │ ├── F50x_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── CAN │ │ ├── F50x_CAN0_LED1.c │ │ ├── F50x_CAN0_LED2.c │ │ ├── F50x_CAN0_Receive.c │ │ └── F50x_CAN0_Transmit.c │ ├── Comparators │ │ └── F500_Comparator0_ResetSource.c │ ├── EMIF │ │ └── F50x_EMIF.c │ ├── Flash │ │ ├── F500_FlashPrimitives.c │ │ ├── F500_FlashPrimitives.h │ │ ├── F500_FlashUtils.c │ │ ├── F500_FlashUtils.h │ │ └── F500_Flash_Test.c │ ├── Header_Files │ │ ├── C8051F500.INC │ │ ├── C8051F500_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F500_External_Interrupts.c │ ├── LIN │ │ ├── F50x_LIN_Master.c │ │ └── F50x_LIN_Slave.c │ ├── Oscillators │ │ ├── F500_Oscillator_CMOS.c │ │ ├── F500_Oscillator_Capacitor.c │ │ ├── F500_Oscillator_ClockMultiplier.c │ │ ├── F500_Oscillator_Crystal.c │ │ └── F500_Oscillator_RC.c │ ├── PCA │ │ ├── F500_PCA0_16Bit_PWM_Output.c │ │ ├── F500_PCA0_8Bit_PWM_Output.c │ │ ├── F500_PCA0_Capture_Input.c │ │ ├── F500_PCA0_Frequency_Output.c │ │ ├── F500_PCA0_High_Speed_Output.c │ │ ├── F500_PCA0_Software_Timer_Blinky.c │ │ └── F50x_PCA0_9-10-11Bit_PWM_Output.c │ ├── PortIO │ │ ├── F500_Ports_PortMatch.c │ │ └── F500_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F500_SMBus_EEPROM.c │ │ ├── F500_SMBus_Master.c │ │ ├── F500_SMBus_Master_Multibyte.c │ │ ├── F500_SMBus_Slave.c │ │ └── F500_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F500_SPI0_EEPROM_Polled_Mode.c │ │ ├── F500_SPI0_Master.c │ │ └── F500_SPI0_Slave.c │ ├── Timers │ │ ├── F500_Timer0_13bitTimer.c │ │ ├── F500_Timer0_16bitTimer.c │ │ ├── F500_Timer0_8bitReloadTimer.c │ │ ├── F50x_Timer0_two_8bitTimers.c │ │ ├── F50x_Timer2_16bitReloadTimer.c │ │ └── F50x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F500_UART0_Interrupt.c │ │ └── F500_UART0_STDIO.c │ └── Watchdog │ │ └── F500_Watchdog.c ├── C8051F52xA_53xA │ ├── ADC │ │ ├── F53xA_ADC0_ExternalInput.c │ │ └── F53xA_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F520A.INC │ │ ├── C8051F520A_defs.h │ │ ├── F53xA_Blinky.asm │ │ ├── F53xA_Blinky.c │ │ ├── F53xA_Blinky_Asm.wsp │ │ ├── F53xA_Blinky_C.wsp │ │ ├── c8051F520.h │ │ └── compiler_defs.h │ ├── Comparators │ │ └── F53xA_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051F520A.INC │ │ ├── C8051F520A_defs.h │ │ ├── c8051F520.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F53xA_External_Interrupts.c │ ├── LIN │ │ ├── F53xA_LIN_Master.c │ │ └── F53xA_LIN_Slave.c │ ├── Oscillators │ │ ├── F53xA_Oscillator_CMOS.c │ │ ├── F53xA_Oscillator_Capacitor.c │ │ ├── F53xA_Oscillator_Crystal.c │ │ ├── F53xA_Oscillator_RC.c │ │ └── F53xA_Oscillator_Suspend.c │ ├── PCA │ │ ├── F53xA_PCA0_16Bit_PWM_Output.c │ │ ├── F53xA_PCA0_8Bit_PWM_Output.c │ │ ├── F53xA_PCA0_Capture_Input.c │ │ ├── F53xA_PCA0_Frequency_Output.c │ │ ├── F53xA_PCA0_High_Speed_Output.c │ │ └── F53xA_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── F53xA_PortMatch.c │ │ └── F53xA_Ports_SwitchLED.c │ ├── SPI │ │ ├── F53xA_SPI0_EEPROM_Polled_Mode.c │ │ ├── F53xA_SPI0_Master.c │ │ └── F53xA_SPI0_Slave.c │ ├── Timers │ │ ├── F53xA_Timer0_13bitExtTimer.c │ │ ├── F53xA_Timer0_13bitTimer.c │ │ ├── F53xA_Timer0_16bitTimer.c │ │ ├── F53xA_Timer0_8bitReloadTimer.c │ │ ├── F53xA_Timer0_two_8bitTimers.c │ │ └── F53xA_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F53xA_UART0_Interrupt.c │ │ └── F53xA_UART0_STDIO_Poll.c │ └── Watchdog │ │ └── F53xA_Watchdog.c ├── C8051F54x │ ├── ADC │ │ ├── F540_ADC0_ExternalInput.c │ │ └── F540_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F540.INC │ │ ├── C8051F540_defs.h │ │ ├── F54x_Blinky.asm │ │ ├── F54x_Blinky.c │ │ ├── F54x_Blinky_ASM.wsp │ │ ├── F54x_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── Comparators │ │ └── F540_Comparator0_ResetSource.c │ ├── Flash │ │ ├── F540_FlashPrimitives.c │ │ ├── F540_FlashPrimitives.h │ │ ├── F540_FlashUtils.c │ │ ├── F540_FlashUtils.h │ │ └── F540_Flash_Test.c │ ├── Header_Files │ │ ├── C8051F540.INC │ │ ├── C8051F540_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F540_External_Interrupts.c │ ├── LIN │ │ ├── F54x_LIN_Master.c │ │ └── F54x_LIN_Slave.c │ ├── Oscillators │ │ ├── F540_Oscillator_CMOS.c │ │ ├── F540_Oscillator_Capacitor.c │ │ ├── F540_Oscillator_ClockMultiplier.c │ │ ├── F540_Oscillator_Crystal.c │ │ └── F540_Oscillator_RC.c │ ├── PCA │ │ ├── F540_PCA0_16Bit_PWM_Output.c │ │ ├── F540_PCA0_8Bit_PWM_Output.c │ │ ├── F540_PCA0_Capture_Input.c │ │ ├── F540_PCA0_Frequency_Output.c │ │ ├── F540_PCA0_High_Speed_Output.c │ │ ├── F540_PCA0_Software_Timer_Blinky.c │ │ └── F54x_PCA0_9-10-11Bit_PWM_Output.c │ ├── PortIO │ │ ├── F540_Ports_PortMatch.c │ │ └── F540_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F540_SMBus_EEPROM.c │ │ ├── F540_SMBus_Master.c │ │ ├── F540_SMBus_Master_Multibyte.c │ │ ├── F540_SMBus_Slave.c │ │ └── F540_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F540_SPI0_EEPROM_Polled_Mode.c │ │ ├── F540_SPI0_Master.c │ │ └── F540_SPI0_Slave.c │ ├── Timers │ │ ├── F540_Timer0_13bitTimer.c │ │ ├── F540_Timer0_16bitTimer.c │ │ ├── F540_Timer0_8bitReloadTimer.c │ │ ├── F54x_Timer0_two_8bitTimers.c │ │ ├── F54x_Timer2_16bitReloadTimer.c │ │ └── F54x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F540_UART0_Interrupt.c │ │ └── F540_UART0_STDIO.c │ └── Watchdog │ │ └── F540_Watchdog.c ├── C8051F55x_56x_57x │ ├── ADC │ │ ├── F560_ADC0_ExternalInput.c │ │ └── F560_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F560.INC │ │ ├── C8051F560_defs.h │ │ ├── F560_Blinky.asm │ │ ├── F560_Blinky.c │ │ ├── F560_Blinky_ASM.wsp │ │ ├── F560_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── CAN │ │ ├── F560_CAN0_Receive.c │ │ ├── F560_CAN0_Transmit.c │ │ ├── F56x_CAN0_LED1.c │ │ └── F56x_CAN0_LED2.c │ ├── Comparators │ │ └── F560_Comparator0_ResetSource.c │ ├── EMIF │ │ └── F560_EMIF.c │ ├── Flash │ │ ├── F560_FlashPrimitives.c │ │ ├── F560_FlashPrimitives.h │ │ ├── F560_FlashUtils.c │ │ ├── F560_FlashUtils.h │ │ └── F560_Flash_Test.c │ ├── Header_Files │ │ ├── C8051F560.INC │ │ ├── C8051F560_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F560_External_Interrupts.c │ ├── LIN │ │ ├── F560_LIN_Master.c │ │ └── F560_LIN_Slave.c │ ├── Oscillators │ │ ├── F560_Oscillator_CMOS.c │ │ ├── F560_Oscillator_Capacitor.c │ │ ├── F560_Oscillator_ClockMultiplier.c │ │ ├── F560_Oscillator_Crystal.c │ │ └── F560_Oscillator_RC.c │ ├── PCA │ │ ├── F560_PCA0_16Bit_PWM_Output.c │ │ ├── F560_PCA0_8Bit_PWM_Output.c │ │ ├── F560_PCA0_9-10-11Bit_PWM_Output.c │ │ ├── F560_PCA0_Capture_Input.c │ │ ├── F560_PCA0_Frequency_Output.c │ │ ├── F560_PCA0_High_Speed_Output.c │ │ └── F560_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── F560_Ports_PortMatch.c │ │ └── F560_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F560_SMBus_EEPROM.c │ │ ├── F560_SMBus_Master.c │ │ ├── F560_SMBus_Master_Multibyte.c │ │ ├── F560_SMBus_Slave.c │ │ └── F560_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F560_SPI0_EEPROM_Polled_Mode.c │ │ ├── F560_SPI0_Master.c │ │ └── F560_SPI0_Slave.c │ ├── Timers │ │ ├── F560_Timer0_13bitTimer.c │ │ ├── F560_Timer0_16bitTimer.c │ │ ├── F560_Timer0_8bitReloadTimer.c │ │ ├── F560_Timer0_two_8bitTimers.c │ │ ├── F560_Timer2_16bitReloadTimer.c │ │ └── F560_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F560_UART0_Interrupt.c │ │ └── F560_UART0_STDIO.c │ └── Watchdog │ │ └── F560_Watchdog.c ├── C8051F58x_59x │ ├── ADC │ │ ├── F580_ADC0_ExternalInput.c │ │ └── F580_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F580.INC │ │ ├── C8051F580_defs.h │ │ ├── F580_Blinky.c │ │ ├── F580_Blinky_C.wsp │ │ ├── F58x_Blinky.asm │ │ ├── F58x_Blinky_ASM.wsp │ │ └── compiler_defs.h │ ├── Blinky_Banked │ │ ├── Keil │ │ │ ├── F580_Blinky.c │ │ │ ├── F580_Blinky_Banked.wsp │ │ │ ├── F580_Blinky_Init.c │ │ │ ├── F580_Blinky_Init.h │ │ │ ├── L51_BANK.A51 │ │ │ └── STARTUP.A51 │ │ └── Raisonance │ │ │ ├── BNK_SWTC.MAC │ │ │ ├── F580_Banked_Blinky.wsp │ │ │ ├── F580_Blinky.c │ │ │ ├── F580_Blinky_Init.c │ │ │ ├── F580_Blinky_Init.h │ │ │ └── l51_bank.A51 │ ├── CAN │ │ ├── F580_CAN0_Receive.c │ │ └── F580_CAN0_Transmit.c │ ├── Comparators │ │ └── F580_Comparator0_ResetSource.c │ ├── EMIF │ │ └── F580_EMIF.c │ ├── Flash │ │ ├── F580_FlashPrimitives.c │ │ ├── F580_FlashPrimitives.h │ │ ├── F580_FlashUtils.c │ │ ├── F580_FlashUtils.h │ │ └── F580_Flash_Test.c │ ├── Header_Files │ │ ├── C8051F580.INC │ │ ├── C8051F580_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F580_External_Interrupts.c │ ├── LIN │ │ ├── F580_LIN_Master.c │ │ └── F580_LIN_Slave.c │ ├── Oscillators │ │ ├── F580_Oscillator_CMOS.c │ │ ├── F580_Oscillator_Capacitor.c │ │ ├── F580_Oscillator_ClockMultiplier.c │ │ ├── F580_Oscillator_Crystal.c │ │ └── F580_Oscillator_RC.c │ ├── PCA │ │ ├── PCA0 │ │ │ ├── F580_PCA0_16Bit_PWM_Output.c │ │ │ ├── F580_PCA0_8Bit_PWM_Output.c │ │ │ ├── F580_PCA0_9-10-11Bit_PWM_Output.c │ │ │ ├── F580_PCA0_Capture_Input.c │ │ │ ├── F580_PCA0_Frequency_Output.c │ │ │ ├── F580_PCA0_High_Speed_Output.c │ │ │ └── F580_PCA0_Software_Timer_Blinky.c │ │ └── PCA1 │ │ │ ├── F580_PCA1_16Bit_PWM_Output.c │ │ │ ├── F580_PCA1_8Bit_PWM_Output.c │ │ │ ├── F580_PCA1_9-10-11Bit_PWM_Output.c │ │ │ ├── F580_PCA1_Capture_Input.c │ │ │ ├── F580_PCA1_Frequency_Output.c │ │ │ ├── F580_PCA1_High_Speed_Output.c │ │ │ └── F580_PCA1_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── F580_Ports_PortMatch.c │ │ └── F580_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F580_SMBus_EEPROM.c │ │ ├── F580_SMBus_Master.c │ │ ├── F580_SMBus_Master_Multibyte.c │ │ ├── F580_SMBus_Slave.c │ │ └── F580_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F580_SPI0_EEPROM_Polled_Mode.c │ │ ├── F580_SPI0_Master.c │ │ └── F580_SPI0_Slave.c │ ├── Timers │ │ ├── Timer0 │ │ │ ├── F580_Timer0_13bitTimer.c │ │ │ ├── F580_Timer0_16bitTimer.c │ │ │ ├── F580_Timer0_8bitReloadTimer.c │ │ │ └── F580_Timer0_two_8bitTimers.c │ │ ├── Timer2 │ │ │ ├── F580_Timer2_16bitReloadTimer.c │ │ │ └── F580_Timer2_two_8bitTimers.c │ │ └── Timer4 │ │ │ ├── F580_Timer4_Auto_Reload.c │ │ │ ├── F580_Timer4_Capture_Input.c │ │ │ └── F580_Timer4_Toggle_Output.c │ ├── UART │ │ ├── UART0 │ │ │ ├── F580_UART0_Interrupt.c │ │ │ └── F580_UART0_STDIO.c │ │ └── UART1 │ │ │ ├── F580_UART1_Interrupt.c │ │ │ └── F580_UART1_STDIO.c │ └── Watchdog │ │ └── F580_Watchdog.c ├── C8051F70x_71x │ ├── ADC │ │ ├── F70x_ADC0_ExternalInput.c │ │ └── F70x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F700.INC │ │ ├── C8051F700_defs.h │ │ ├── F70x_Blinky.asm │ │ ├── F70x_Blinky.c │ │ ├── F70x_F71x_Blinky_ASM.wsp │ │ ├── F70x_F71x_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── CRC │ │ └── F70x_CRC.c │ ├── CS0 │ │ └── F70x_CS0.c │ ├── Comparators │ │ └── F700_Comparator0_ResetSource.c │ ├── EEPROM │ │ └── F70x_EEPROM.c │ ├── EMIF │ │ └── F70x_EMIF_AB1.c │ ├── Flash │ │ ├── F700_FlashPrimitives.c │ │ ├── F700_FlashPrimitives.h │ │ ├── F700_FlashUtils.c │ │ ├── F700_FlashUtils.h │ │ ├── F700_Flash_Test.c │ │ └── F70x_FlashTest.wsp │ ├── Header_Files │ │ ├── C8051F700.INC │ │ ├── C8051F700_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F70x_External_Interrupts.c │ ├── LowPower │ │ ├── F70x_LowPower_IdleMode.c │ │ ├── F70x_SuspendMode_CS0Wake.c │ │ ├── F70x_SuspendMode_ComparatorWake.c │ │ ├── F70x_SuspendMode_PortMatchWake.c │ │ └── F70x_SuspendMode_Timer3Wake.c │ ├── Oscillators │ │ ├── F70x_Oscillator_CMOS.c │ │ ├── F70x_Oscillator_Capacitor.c │ │ ├── F70x_Oscillator_Crystal.c │ │ └── F70x_Oscillator_RC.c │ ├── PCA │ │ ├── F70x_PCA0_16Bit_PWM_Output.c │ │ ├── F70x_PCA0_8Bit_PWM_Output.c │ │ ├── F70x_PCA0_9-10-11Bit_PWM_Output.c │ │ ├── F70x_PCA0_Capture_Input.c │ │ ├── F70x_PCA0_Frequency_Output.c │ │ ├── F70x_PCA0_High_Speed_Output.c │ │ └── F70x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── F70x_Ports_PortMatch.c │ │ └── F70x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F70x_SMBus_EEPROM.c │ │ ├── F70x_SMBus_Master.c │ │ ├── F70x_SMBus_Master_Multibyte.c │ │ ├── F70x_SMBus_Slave.c │ │ └── F70x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F70x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F70x_SPI0_Master.c │ │ └── F70x_SPI0_Slave.c │ ├── Timers │ │ ├── F70x_Timer0_13bitExtTimer.c │ │ ├── F70x_Timer0_13bitTimer.c │ │ ├── F70x_Timer0_16bitTimer.c │ │ ├── F70x_Timer0_8bitReloadTimer.c │ │ ├── F70x_Timer0_two_8bitTimers.c │ │ ├── F70x_Timer2_16bitReloadTimer.c │ │ └── F70x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F70x_UART0_Interrupt.c │ │ └── F70x_UART0_STDIO.c │ └── Watchdog │ │ └── F70x_Watchdog.c ├── C8051F80x_83x │ ├── ADC │ │ ├── F80x_ADC0_ExternalInput.c │ │ └── F80x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051F800.INC │ │ ├── C8051F800_defs.h │ │ ├── F80x_Blinky.asm │ │ ├── F80x_Blinky.c │ │ ├── F80x_F83x_Blinky_ASM.wsp │ │ ├── F80x_F83x_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── CRC │ │ └── F80x_CRC.c │ ├── CS0 │ │ └── F80x_CS0.c │ ├── Comparators │ │ └── F800_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051F800.INC │ │ ├── C8051F800_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── F80x_External_Interrupts.c │ ├── LowPower │ │ ├── F80x_LowPower_IdleMode.c │ │ ├── F80x_SuspendMode_CS0Wake.c │ │ ├── F80x_SuspendMode_ComparatorWake.c │ │ ├── F80x_SuspendMode_PortMatchWake.c │ │ └── F80x_SuspendMode_Timer2Wake.c │ ├── Oscillators │ │ ├── F80x_Oscillator_CMOS.c │ │ ├── F80x_Oscillator_Capacitor.c │ │ ├── F80x_Oscillator_Crystal.c │ │ └── F80x_Oscillator_RC.c │ ├── PCA │ │ ├── F80x_PCA0_16Bit_PWM_Output.c │ │ ├── F80x_PCA0_8Bit_PWM_Output.c │ │ ├── F80x_PCA0_9-10-11Bit_PWM_Output.c │ │ ├── F80x_PCA0_Capture_Input.c │ │ ├── F80x_PCA0_Frequency_Output.c │ │ ├── F80x_PCA0_High_Speed_Output.c │ │ └── F80x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── F80x_Ports_PortMatch.c │ │ └── F80x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F80x_SMBus_EEPROM.c │ │ ├── F80x_SMBus_Master.c │ │ ├── F80x_SMBus_Master_Multibyte.c │ │ ├── F80x_SMBus_Slave.c │ │ └── F80x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── F80x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F80x_SPI0_Master.c │ │ └── F80x_SPI0_Slave.c │ ├── Timers │ │ ├── F80x_Timer0_13bitExtTimer.c │ │ ├── F80x_Timer0_13bitTimer.c │ │ ├── F80x_Timer0_16bitTimer.c │ │ ├── F80x_Timer0_8bitReloadTimer.c │ │ ├── F80x_Timer0_two_8bitTimers.c │ │ ├── F80x_Timer2_16bitReloadTimer.c │ │ └── F80x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F80x_UART0_Interrupt.c │ │ └── F80x_UART0_STDIO.c │ └── Watchdog │ │ └── F80x_Watchdog.c ├── C8051F91x_90x │ ├── ADC │ │ ├── F912_ADC0_12bit_ExternalInput.c │ │ ├── F91x_ADC0_BurstMode.c │ │ └── F91x_ADC0_ExternalInput.c │ ├── Blinky │ │ ├── C8051F912.INC │ │ ├── C8051F912_defs.h │ │ ├── F91x_Blinky.c │ │ ├── F91x_Blinky_C_Keil.wsp │ │ ├── F91x_Blinky_C_Raisonance.wsp │ │ ├── F91x_Blinky_C_SDCC.wsp │ │ └── compiler_defs.h │ ├── CRC │ │ └── F91x_CRC.c │ ├── CapTouchSense_Switch │ │ ├── F91x_CapTouchSense_Switch.c │ │ └── F91x_CapTouchSense_Tune.c │ ├── CapTouchSense_WakeOnRTC │ │ ├── CapTouchSense_WakeOnRTC.h │ │ ├── CapTouchSense_WakeOnRTC_Calibrate.c │ │ ├── CapTouchSense_WakeOnRTC_Init.c │ │ ├── CapTouchSense_WakeOnRTC_Keil.wsp │ │ ├── CapTouchSense_WakeOnRTC_Main.c │ │ ├── CapTouchSense_WakeOnRTC_RTC.c │ │ └── CapTouchSense_WakeOnRTC_Raisonance.wsp │ ├── F9xx_Imeasure │ │ ├── F9xx_Config.h │ │ ├── F9xx_Main.c │ │ ├── Global_Const.h │ │ ├── Imeasure.a51 │ │ ├── Imeasure.h │ │ ├── Imeasure_Keil.wsp │ │ └── Imeasure_Raisonance.wsp │ ├── Header_Files │ │ ├── C8051F912.INC │ │ ├── C8051F912_defs.h │ │ └── compiler_defs.h │ ├── IREF │ │ └── F91x_IREF0.c │ ├── Interrupts │ │ └── F91x_External_Interrupts.c │ ├── Oscillators │ │ ├── F91x_Oscillator_CMOS.c │ │ ├── F91x_Oscillator_Capacitor.c │ │ ├── F91x_Oscillator_Crystal.c │ │ ├── F91x_Oscillator_LowPower.c │ │ ├── F91x_Oscillator_Precision.c │ │ ├── F91x_Oscillator_RC.c │ │ ├── F91x_Oscillator_SelfOscillate.c │ │ ├── F91x_Oscillator_SpreadSpectrum.c │ │ └── F91x_Oscillator_smaRTClock.c │ ├── PCA │ │ ├── F91x_PCA0_16Bit_PWM_Output.c │ │ ├── F91x_PCA0_8Bit_PWM_Output.c │ │ ├── F91x_PCA0_Capture_Input.c │ │ ├── F91x_PCA0_Frequency_Output.c │ │ ├── F91x_PCA0_High_Speed_Output.c │ │ └── F91x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F912_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F91x_SMBus_EEPROM.c │ │ ├── F91x_SMBus_Master.c │ │ ├── F91x_SMBus_Master_Multibyte.c │ │ ├── F91x_SMBus_Slave.c │ │ ├── F91x_SMBus_Slave_Multibyte.c │ │ └── F91x_SMBus_Slave_Multibyte_HWACK.c │ ├── SPI │ │ ├── F91x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F91x_SPI0_Master.c │ │ └── F91x_SPI0_Slave.c │ ├── SleepMode │ │ ├── F91x_SleepMode_PortMatchWake │ │ │ ├── C8051F912_lib.h │ │ │ ├── F91x_SleepMode_PortMatchWake.c │ │ │ ├── F91x_SleepMode_PortMatchWake_Keil.wsp │ │ │ ├── F91x_SleepMode_PortMatchWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ │ ├── F91x_SleepMode_Template │ │ │ ├── C8051F912_lib.h │ │ │ ├── F91x_SleepMode_Template_Keil.wsp │ │ │ ├── F91x_SleepMode_Template_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── main.c │ │ │ ├── power.c │ │ │ └── power.h │ │ ├── F91x_SleepMode_smaRTClockWake │ │ │ ├── C8051F912_lib.h │ │ │ ├── F91x_SleepMode_smaRTClockWake.c │ │ │ ├── F91x_SleepMode_smaRTClockWake_Keil.wsp │ │ │ ├── F91x_SleepMode_smaRTClockWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ │ └── F91x_smaRTClock_Date_Tracker.c │ ├── Timers │ │ ├── F91x_Timer0_13bitExtTimer.c │ │ ├── F91x_Timer0_13bitTimer.c │ │ ├── F91x_Timer0_16bitTimer.c │ │ ├── F91x_Timer0_8bitReloadTimer.c │ │ ├── F91x_Timer0_two_8bitTimers.c │ │ ├── F91x_Timer2_16bitReloadTimer.c │ │ └── F91x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F91x_UART0_Interrupt.c │ │ ├── F91x_UART0_STDIO.c │ │ └── SDCC Includes │ │ │ ├── Read Me.txt │ │ │ ├── sdcc_stdio.c │ │ │ └── sdcc_stdio.h │ ├── WakeOnUART │ │ └── F91x_WakeOnUART.c │ └── Watchdog │ │ └── F91x_Watchdog.c ├── C8051F93x_92x │ ├── ADC │ │ ├── F93x_ADC0_BurstMode.c │ │ └── F93x_ADC0_ExternalInput.c │ ├── Blinky │ │ ├── C8051F930.INC │ │ ├── C8051F930_defs.h │ │ ├── F93x_Blinky.c │ │ ├── F93x_Blinky_C_Keil.wsp │ │ ├── F93x_Blinky_C_Raisonance.wsp │ │ ├── F93x_Blinky_C_SDCC.wsp │ │ └── compiler_defs.h │ ├── CRC │ │ └── F93x_CRC.c │ ├── CapTouchSense_Switch │ │ ├── F93x_CapTouchSense_Switch.c │ │ └── F93x_CapTouchSense_Tune.c │ ├── CapTouchSense_WakeOnRTC │ │ ├── CapTouchSense_WakeOnRTC.OMF │ │ ├── CapTouchSense_WakeOnRTC.h │ │ ├── CapTouchSense_WakeOnRTC_Calibrate.c │ │ ├── CapTouchSense_WakeOnRTC_Init.c │ │ ├── CapTouchSense_WakeOnRTC_Keil.wsp │ │ ├── CapTouchSense_WakeOnRTC_Main.c │ │ ├── CapTouchSense_WakeOnRTC_RTC.c │ │ └── CapTouchSense_WakeOnRTC_Raisonance.wsp │ ├── F9xx_Imeasure │ │ ├── F9xx_Config.h │ │ ├── F9xx_Main.c │ │ ├── Global_Const.h │ │ ├── Imeasure.a51 │ │ ├── Imeasure.h │ │ ├── Imeasure_Keil.wsp │ │ └── Imeasure_Raisonance.wsp │ ├── Header_Files │ │ ├── C8051F930.INC │ │ ├── C8051F930_defs.h │ │ └── compiler_defs.h │ ├── IREF │ │ └── F93x_IREF0.c │ ├── Interrupts │ │ └── F93x_External_Interrupts.c │ ├── Oscillators │ │ ├── F93x_Oscillator_CMOS.c │ │ ├── F93x_Oscillator_Capacitor.c │ │ ├── F93x_Oscillator_Crystal.c │ │ ├── F93x_Oscillator_LowPower.c │ │ ├── F93x_Oscillator_Precision.c │ │ ├── F93x_Oscillator_RC.c │ │ ├── F93x_Oscillator_SelfOscillate.c │ │ ├── F93x_Oscillator_SpreadSpectrum.c │ │ └── F93x_Oscillator_smaRTClock.c │ ├── PCA │ │ ├── F93x_PCA0_16Bit_PWM_Output.c │ │ ├── F93x_PCA0_8Bit_PWM_Output.c │ │ ├── F93x_PCA0_Capture_Input.c │ │ ├── F93x_PCA0_Frequency_Output.c │ │ ├── F93x_PCA0_High_Speed_Output.c │ │ └── F93x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F930_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F93x_SMBus_EEPROM.c │ │ ├── F93x_SMBus_Master.c │ │ ├── F93x_SMBus_Master_Multibyte.c │ │ ├── F93x_SMBus_Slave.c │ │ ├── F93x_SMBus_Slave_Multibyte.c │ │ └── F93x_SMBus_Slave_Multibyte_HWACK.c │ ├── SPI │ │ ├── F93x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F93x_SPI0_Master.c │ │ └── F93x_SPI0_Slave.c │ ├── SleepMode │ │ ├── F93x_SleepMode_PortMatchWake │ │ │ ├── C8051F930_lib.h │ │ │ ├── F93x_SleepMode_PortMatchWake.c │ │ │ ├── F93x_SleepMode_PortMatchWake_Keil.wsp │ │ │ ├── F93x_SleepMode_PortMatchWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ │ ├── F93x_SleepMode_Template │ │ │ ├── C8051F930_lib.h │ │ │ ├── F93x_SleepMode_Template_Keil.wsp │ │ │ ├── F93x_SleepMode_Template_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── main.c │ │ │ ├── power.c │ │ │ └── power.h │ │ ├── F93x_SleepMode_smaRTClockWake │ │ │ ├── C8051F930_lib.h │ │ │ ├── F93x_SleepMode_smaRTClockWake.c │ │ │ ├── F93x_SleepMode_smaRTClockWake_Keil.wsp │ │ │ ├── F93x_SleepMode_smaRTClockWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ │ └── F9xx_smaRTClock_Date_Tracker.c │ ├── Timers │ │ ├── F93x_Timer0_13bitExtTimer.c │ │ ├── F93x_Timer0_13bitTimer.c │ │ ├── F93x_Timer0_16bitTimer.c │ │ ├── F93x_Timer0_8bitReloadTimer.c │ │ ├── F93x_Timer0_two_8bitTimers.c │ │ ├── F93x_Timer2_16bitReloadTimer.c │ │ └── F93x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F93x_UART0_Interrupt.c │ │ ├── F93x_UART0_STDIO.c │ │ └── SDCC Includes │ │ │ ├── Read Me.txt │ │ │ ├── sdcc_stdio.c │ │ │ └── sdcc_stdio.h │ ├── WakeOnUART │ │ └── F93x_WakeOnUART.c │ └── Watchdog │ │ └── F93x_Watchdog.c ├── C8051F96x │ ├── ADC │ │ ├── F96x_ADC0_12bit_ExternalInput.c │ │ ├── F96x_ADC0_BurstMode.c │ │ └── F96x_ADC0_ExternalInput.c │ ├── Blinky │ │ ├── Blinky_Keil.wsp │ │ ├── Blinky_Raisonance.wsp │ │ ├── Blinky_SDCC.wsp │ │ ├── C8051F960.INC │ │ ├── C8051F960_defs.h │ │ ├── F96x_Blinky.c │ │ └── compiler_defs.h │ ├── CRC0 │ │ └── F96x_CRC0.c │ ├── DMA │ │ ├── AES │ │ │ ├── AES_BlockCipher.c │ │ │ ├── AES_BlockCipher.h │ │ │ ├── AES_Test.c │ │ │ ├── AES_Test_Keil.wsp │ │ │ ├── AES_Test_Rais.wsp │ │ │ ├── AES_Test_SDCC.wsp │ │ │ ├── AES_defs.h │ │ │ ├── CBC_EncryptDecrypt.c │ │ │ ├── CBC_EncryptDecrypt.h │ │ │ ├── CTR_EncryptDecrypt.c │ │ │ ├── CTR_EncryptDecrypt.h │ │ │ ├── DMA_defs.h │ │ │ ├── GenerateDecryptionKey.c │ │ │ ├── GenerateDecryptionKey.h │ │ │ ├── TestVectors.c │ │ │ └── TestVectors.h │ │ ├── CRC1 │ │ │ ├── CRC1.c │ │ │ ├── CRC1.h │ │ │ ├── CRC1_Test.c │ │ │ ├── CRC1_TestVectors.c │ │ │ ├── CRC1_TestVectors.h │ │ │ ├── CRC1_Test_Keil.wsp │ │ │ ├── CRC1_Test_Rais.wsp │ │ │ ├── CRC1_Test_SDCC.wsp │ │ │ └── DMA_defs.h │ │ ├── ENC │ │ │ ├── DMA_defs.h │ │ │ ├── ENC_Test.c │ │ │ ├── ENC_Test_Keil.wsp │ │ │ ├── ENC_Test_Rais.wsp │ │ │ ├── ENC_Test_SDCC.wsp │ │ │ ├── EncoderDecoder.c │ │ │ ├── EncoderDecoder.h │ │ │ ├── TestVectors.c │ │ │ └── TestVectors.h │ │ └── SPI1 │ │ │ ├── Master │ │ │ ├── DMA_defs.h │ │ │ ├── SPI1_Master.c │ │ │ ├── SPI1_Master.h │ │ │ ├── SPI1_Master_Test.c │ │ │ ├── SPI1_Master_Test_Keil.wsp │ │ │ ├── SPI1_Master_Test_Rais.wsp │ │ │ └── SPI1_Master_Test_SDCC.wsp │ │ │ └── Slave │ │ │ ├── DMA_defs.h │ │ │ ├── SPI1_Slave.c │ │ │ ├── SPI1_Slave.h │ │ │ ├── SPI1_Slave_Test_Keil.wsp │ │ │ ├── SPI1_Slave_Test_Rais.wsp │ │ │ ├── SPI1_Slave_Test_SDCC.wsp │ │ │ └── SPI_Slave_Test.c │ ├── External_Interrupts │ │ └── F96x_External_Interrupts.c │ ├── F96xMeasureCurrent │ │ └── F96xMeasureActiveCurrent │ │ │ ├── F96xActiveCodeLoops.asm │ │ │ ├── F96xMeasureActiveCurrent.c │ │ │ └── F96xMeasureActiveCurrent_Keil.wsp │ ├── Header_Files │ │ ├── C8051F960.INC │ │ ├── C8051F960_defs.h │ │ └── compiler_defs.h │ ├── IREF │ │ ├── F96x_IREF0.c │ │ └── F96x_IREF0_PWM.c │ ├── LCD │ │ ├── LowPowerSleep_VIM878.c │ │ ├── LowPowerSleep_VIM878_Keil.wsp │ │ ├── LowPowerSleep_VIM878_Rais.wsp │ │ ├── LowPowerSleep_VIM878_SDCC.wsp │ │ ├── PowerManagementF960.c │ │ ├── PowerManagementF960.h │ │ ├── SmaRTClockF960.c │ │ ├── SmaRTClockF960.h │ │ ├── lcdConfig.c │ │ ├── lcdConfig.h │ │ ├── lcdPrintf.c │ │ ├── lcdPrintf.h │ │ ├── lcdPutChar_VI401.c │ │ ├── lcdPutChar_VI401.h │ │ ├── lcdPutChar_VIM878.c │ │ ├── lcdPutChar_VIM878.h │ │ ├── lcdPutString.c │ │ ├── lcdPutString.h │ │ ├── lcdTest_VIM878.c │ │ ├── lcdTest_VIM878_Keil.wsp │ │ ├── lcdTest_VIM878_Rais.wsp │ │ └── lcdTest_VIM878_SDCC.wsp │ ├── Oscillators │ │ ├── F96x_Oscillator_CMOS.c │ │ ├── F96x_Oscillator_Capacitor.c │ │ ├── F96x_Oscillator_Crystal.c │ │ ├── F96x_Oscillator_LowPower.c │ │ ├── F96x_Oscillator_Precision.c │ │ ├── F96x_Oscillator_RC.c │ │ ├── F96x_Oscillator_SelfOscillate.c │ │ ├── F96x_Oscillator_SpreadSpectrum.c │ │ └── F96x_Oscillator_smaRTClock.c │ ├── PCA │ │ ├── F96x_PCA0_16Bit_PWM_Output.c │ │ ├── F96x_PCA0_8Bit_PWM_Output.c │ │ ├── F96x_PCA0_Capture_Input.c │ │ ├── F96x_PCA0_Frequency_Output.c │ │ ├── F96x_PCA0_High_Speed_Output.c │ │ └── F96x_PCA0_Software_Timer_Blinky.c │ ├── Ports │ │ └── F96x_Ports_SwitchLED.c │ ├── PulseCounter │ │ ├── PC0_Dual_Form_A_Keil.wsp │ │ ├── PC0_Dual_Form_A_Rais.wsp │ │ ├── PC0_Dual_Form_A_SDCC.wsp │ │ ├── PC0_Dual_Form_A_main.c │ │ ├── PC0_Quadrature_Keil.wsp │ │ ├── PC0_Quadrature_Rais.wsp │ │ ├── PC0_Quadrature_SDCC.wsp │ │ ├── PC0_Quadrature_main.c │ │ ├── PC0_Single_Form_A_Keil.wsp │ │ ├── PC0_Single_Form_A_Rais.wsp │ │ ├── PC0_Single_Form_A_SDCC.wsp │ │ ├── PC0_Single_Form_A_main.c │ │ ├── PC0_Single_Form_C_Keil.wsp │ │ ├── PC0_Single_Form_C_Rais.wsp │ │ ├── PC0_Single_Form_C_SDCC.wsp │ │ ├── PC0_Single_Form_C_main.c │ │ ├── PulseCounter.c │ │ ├── PulseCounter.h │ │ ├── SmaRTClockF960.c │ │ ├── SmaRTClockF960.h │ │ ├── Test_PulseCounter.c │ │ ├── Test_PulseCounter_Keil.wsp │ │ ├── Test_PulseCounter_Rais.wsp │ │ └── Test_PulseCounter_SDCC.wsp │ ├── SMBus │ │ ├── F96x_SMBus_EEPROM.c │ │ ├── F96x_SMBus_Master.c │ │ ├── F96x_SMBus_Master_Multibyte.c │ │ ├── F96x_SMBus_Slave.c │ │ ├── F96x_SMBus_Slave_Multibyte.c │ │ └── F96x_SMBus_Slave_Multibyte_HWACK.c │ ├── SPI0 │ │ ├── F96x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F96x_SPI0_Master.c │ │ └── F96x_SPI0_Slave.c │ ├── SleepMode │ │ ├── F96x_SleepMode_PortMatchWake │ │ │ ├── F96x_SleepMode_PortMatchWake.c │ │ │ ├── F96x_SleepMode_PortMatchWake_Keil.wsp │ │ │ ├── F96x_SleepMode_PortMatchWake_Rais.wsp │ │ │ ├── F96x_SleepMode_PortMatchWake_SDCC.wsp │ │ │ ├── PowerManagementF960.c │ │ │ ├── PowerManagementF960.h │ │ │ ├── SmaRTClockF960.c │ │ │ └── SmaRTClockF960.h │ │ └── F96x_SleepMode_smaRTClockWake │ │ │ ├── F96x_SleepMode_smaRTClockWake.c │ │ │ ├── F96x_SleepMode_smaRTClockWake_Keil.wsp │ │ │ ├── F96x_SleepMode_smaRTClockWake_Rais.wsp │ │ │ ├── F96x_SleepMode_smaRTClockWake_SDCC.wsp │ │ │ ├── PowerManagementF960.c │ │ │ ├── PowerManagementF960.h │ │ │ ├── SmaRTClockF960.c │ │ │ └── SmaRTClockF960.h │ ├── SmaRTClock │ │ ├── SmaRTClockF960.c │ │ ├── SmaRTClockF960.h │ │ ├── Test_SmaRTClock.c │ │ ├── Test_SmaRTClock_Keil.wsp │ │ ├── Test_SmaRTClock_Rais.wsp │ │ └── Test_SmaRTClock_SDCC.wsp │ ├── Timer │ │ ├── F96x_Timer0_13bitExtTimer.c │ │ ├── F96x_Timer0_13bitTimer.c │ │ ├── F96x_Timer0_16bitTimer.c │ │ ├── F96x_Timer0_8bitReloadTimer.c │ │ ├── F96x_Timer0_two_8bitTimers.c │ │ ├── F96x_Timer2_16bitReloadTimer.c │ │ └── F96x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F96x_UART0_Interrupt.c │ │ ├── F96x_UART0_STDIO.c │ │ └── F96x_WakeOnUART.c │ └── Watchdog │ │ └── F96x_Watchdog.c ├── C8051F99x_98x │ ├── ADC │ │ ├── F99x_ADC0_12bit_ExternalInput.c │ │ ├── F99x_ADC0_BurstMode.c │ │ └── F99x_ADC0_ExternalInput.c │ ├── Blinky │ │ ├── C8051F990_defs.h │ │ ├── F99x_Blinky.c │ │ ├── F99x_Blinky_C_Keil.wsp │ │ ├── F99x_Blinky_C_Raisonance.wsp │ │ ├── F99x_Blinky_C_SDCC.wsp │ │ └── compiler_defs.h │ ├── CRC │ │ └── F99x_CRC.c │ ├── CapTouchSense │ │ └── readme.txt │ ├── F9xx_Imeasure │ │ ├── F9xx_Config.h │ │ ├── F9xx_Main.c │ │ ├── Global_Const.h │ │ ├── Imeasure.a51 │ │ ├── Imeasure.h │ │ ├── Imeasure_Keil.wsp │ │ └── Imeasure_Raisonance.wsp │ ├── Header_Files │ │ ├── C8051F990_defs.h │ │ └── compiler_defs.h │ ├── IREF │ │ ├── F99x_IREF0.c │ │ └── F99x_IREF0_PWM.c │ ├── Interrupts │ │ └── F99x_External_Interrupts.c │ ├── Oscillators │ │ ├── F99x_Oscillator_CMOS.c │ │ ├── F99x_Oscillator_Capacitor.c │ │ ├── F99x_Oscillator_Crystal.c │ │ ├── F99x_Oscillator_LowPower.c │ │ ├── F99x_Oscillator_Precision.c │ │ ├── F99x_Oscillator_RC.c │ │ ├── F99x_Oscillator_SelfOscillate.c │ │ ├── F99x_Oscillator_SpreadSpectrum.c │ │ └── F99x_Oscillator_smaRTClock.c │ ├── PCA │ │ ├── F99x_PCA0_16Bit_PWM_Output.c │ │ ├── F99x_PCA0_8Bit_PWM_Output.c │ │ ├── F99x_PCA0_Capture_Input.c │ │ ├── F99x_PCA0_Frequency_Output.c │ │ ├── F99x_PCA0_High_Speed_Output.c │ │ └── F99x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── F99x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── F99x_SMBus_EEPROM.c │ │ ├── F99x_SMBus_Master.c │ │ ├── F99x_SMBus_Master_Multibyte.c │ │ ├── F99x_SMBus_Slave.c │ │ ├── F99x_SMBus_Slave_Multibyte.c │ │ └── F99x_SMBus_Slave_Multibyte_HWACK.c │ ├── SPI │ │ ├── F99x_SPI0_EEPROM_Polled_Mode.c │ │ ├── F99x_SPI0_Master.c │ │ └── F99x_SPI0_Slave.c │ ├── SleepMode │ │ ├── F99x_SleepMode_PortMatchWake │ │ │ ├── C8051F990_lib.h │ │ │ ├── F99x_SleepMode_PortMatchWake.c │ │ │ ├── F99x_SleepMode_PortMatchWake_Keil.wsp │ │ │ ├── F99x_SleepMode_PortMatchWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ │ ├── F99x_SleepMode_Template │ │ │ ├── C8051F990_lib.h │ │ │ ├── F99x_SleepMode_Template_Keil.wsp │ │ │ ├── F99x_SleepMode_Template_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── main.c │ │ │ ├── power.c │ │ │ └── power.h │ │ ├── F99x_SleepMode_smaRTClockWake │ │ │ ├── C8051F990_lib.h │ │ │ ├── F99x_SleepMode_smaRTClockWake.c │ │ │ ├── F99x_SleepMode_smaRTClockWake_Keil.wsp │ │ │ ├── F99x_SleepMode_smaRTClockWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ │ └── F99x_smaRTClock_Date_Tracker.c │ ├── Timers │ │ ├── F99x_Timer0_13bitExtTimer.c │ │ ├── F99x_Timer0_13bitTimer.c │ │ ├── F99x_Timer0_16bitTimer.c │ │ ├── F99x_Timer0_8bitReloadTimer.c │ │ ├── F99x_Timer0_two_8bitTimers.c │ │ ├── F99x_Timer2_16bitReloadTimer.c │ │ └── F99x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── F99x_UART0_Interrupt.c │ │ ├── F99x_UART0_STDIO.c │ │ └── SDCC Includes │ │ │ ├── Read Me.txt │ │ │ ├── sdcc_stdio.c │ │ │ └── sdcc_stdio.h │ ├── WakeOnUART │ │ └── F99x_WakeOnUART.c │ └── Watchdog │ │ └── F99x_Watchdog.c ├── C8051T60x │ ├── ADC │ │ ├── T60x_ADC0_ExternalInput.c │ │ └── T60x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051T600.INC │ │ ├── C8051T600_defs.h │ │ ├── T60x_Blinky.asm │ │ ├── T60x_Blinky.c │ │ ├── T60x_Blinky_Asm.wsp │ │ ├── T60x_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── Comparators │ │ └── T60x_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051T600.INC │ │ ├── C8051T600_defs.h │ │ └── compiler_defs.h │ ├── Oscillators │ │ ├── T60x_Oscillator_CMOS.c │ │ ├── T60x_Oscillator_Capacitor.c │ │ └── T60x_Oscillator_RC.c │ ├── PCA │ │ ├── T60x_PCA0_16Bit_PWM_Output.c │ │ ├── T60x_PCA0_8Bit_PWM_Output.c │ │ ├── T60x_PCA0_Capture_Input.c │ │ ├── T60x_PCA0_Frequency_Output.c │ │ ├── T60x_PCA0_High_Speed_Output.c │ │ └── T60x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── T60x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── T60x_SMBus_EEPROM.c │ │ ├── T60x_SMBus_Master.c │ │ ├── T60x_SMBus_Master_Multibyte.c │ │ ├── T60x_SMBus_Multimaster.c │ │ ├── T60x_SMBus_Slave.c │ │ └── T60x_SMBus_Slave_Multibyte.c │ ├── Timers │ │ ├── T60x_Timer0_13bitTimer.c │ │ ├── T60x_Timer0_16bitTimer.c │ │ ├── T60x_Timer0_8bitReloadTimer.c │ │ ├── T60x_Timer0_two_8bitTimers.c │ │ ├── T60x_Timer2_16bitReloadTimer.c │ │ └── T60x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── T60x_UART0_Interrupt.c │ │ └── T60x_UART_STDIO.c │ └── Watchdog │ │ └── T60x_Watchdog.c ├── C8051T61x │ ├── ADC │ │ ├── T61x_ADC0_ExternalInput.c │ │ └── T61x_ADC0_ExternalInput_Mux.c │ ├── Blinky │ │ ├── C8051T610.INC │ │ ├── C8051T610_defs.h │ │ ├── T61x_Blinky.asm │ │ ├── T61x_Blinky.c │ │ ├── T61x_Blinky_Asm.wsp │ │ ├── T61x_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── Comparators │ │ └── T61x_Comparator0_ResetSource.c │ ├── Header_Files │ │ ├── C8051T610.INC │ │ ├── C8051T610_defs.h │ │ └── compiler_defs.h │ ├── Oscillators │ │ ├── T61x_Oscillator_CMOS.c │ │ ├── T61x_Oscillator_Capacitor.c │ │ └── T61x_Oscillator_RC.c │ ├── PCA │ │ ├── T61x_PCA0_16Bit_PWM_Output.c │ │ ├── T61x_PCA0_8Bit_PWM_Output.c │ │ ├── T61x_PCA0_Capture_Input.c │ │ ├── T61x_PCA0_Frequency_Output.c │ │ ├── T61x_PCA0_High_Speed_Output.c │ │ └── T61x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── T61x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── T61x_SMBus_EEPROM.c │ │ ├── T61x_SMBus_EEPROM_experiment.c │ │ ├── T61x_SMBus_Master.c │ │ ├── T61x_SMBus_Master_Multibyte.c │ │ ├── T61x_SMBus_Slave.c │ │ └── T61x_SMBus_Slave_Multibyte.c │ ├── SPI │ │ └── T61x_SPI0_EEPROM_Polled_Mode.c │ ├── Timers │ │ ├── T61x_Timer0_13bitTimer.c │ │ ├── T61x_Timer0_16bitTimer.c │ │ ├── T61x_Timer0_8bitReloadTimer.c │ │ ├── T61x_Timer0_two_8bitTimers.c │ │ ├── T61x_Timer2_16bitReloadTimer.c │ │ └── T61x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── T61x_UART_INT.c │ │ └── T61x_UART_STDIO.c │ └── Watchdog │ │ └── T61x_Watchdog.c ├── C8051T620_1_T320_3 │ ├── ADC │ │ ├── T620_ADC0_ExternalInput.c │ │ ├── T620_ADC0_ExternalInput_Mux.c │ │ └── T620_ADC0_WindowInterrupt.c │ ├── Blinky │ │ ├── C8051T620.INC │ │ ├── C8051T620_defs.h │ │ ├── T620_Blinky.asm │ │ ├── T620_Blinky.c │ │ ├── T620_Blinky_Asm.wsp │ │ ├── T620_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── Comparators │ │ └── T620_Comparator0_ResetSource.c │ ├── EPROM │ │ ├── T620_EPROM.c │ │ ├── T620_EPROM_Primitives.c │ │ ├── T620_EPROM_Primitives.h │ │ ├── T620_EPROM_Utils.c │ │ └── T620_EPROM_Utils.h │ ├── Header_Files │ │ ├── C8051T620.INC │ │ ├── C8051T620_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── T620_External_Interrupts.c │ ├── LockByte │ │ ├── LockByte.c │ │ ├── T620_LockByte.c │ │ └── T620_LockByte.wsp │ ├── Oscillators │ │ ├── T620_LFO_Idle.c │ │ ├── T620_Oscillator_CMOS.c │ │ ├── T620_Oscillator_Capacitor.c │ │ ├── T620_Oscillator_Crystal.c │ │ ├── T620_Oscillator_RC.c │ │ └── T620_Oscillator_Suspend.c │ ├── PCA │ │ ├── T620_PCA0_16Bit_PWM_Output.c │ │ ├── T620_PCA0_8Bit_PWM_Output.c │ │ ├── T620_PCA0_9-10-11Bit_PWM_Output.c │ │ ├── T620_PCA0_Capture_Input.c │ │ ├── T620_PCA0_Frequency_Output.c │ │ ├── T620_PCA0_High_Speed_Output.c │ │ └── T620_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── T620_PortMatch.c │ │ └── T620_Ports_SwitchesLEDs.c │ ├── SMBus │ │ ├── T620_SMBus_EEPROM.c │ │ ├── T620_SMBus_Master.c │ │ ├── T620_SMBus_Master_Multibyte.c │ │ ├── T620_SMBus_Multimaster.c │ │ ├── T620_SMBus_Slave.c │ │ ├── T620_SMBus_Slave_Hardware_ACK.c │ │ ├── T620_SMBus_Slave_Multibyte.c │ │ └── T620_SMBus_Slave_Multibyte_Hardware_ACK.c │ ├── SPI │ │ ├── T620_SPI0_EEPROM_Polled_Mode.c │ │ ├── T620_SPI0_Master.c │ │ └── T620_SPI0_Slave.c │ ├── TempSensor │ │ ├── WithCompensation │ │ │ └── T620_ADC_TemperatureSensor.c │ │ └── WithoutCompensation │ │ │ └── T620_ADC_TemperatureSensor.c │ ├── Timers │ │ ├── T620_Timer0_13bitExtTimer.c │ │ ├── T620_Timer0_13bitTimer.c │ │ ├── T620_Timer0_16bitTimer.c │ │ ├── T620_Timer0_8bitReloadTimer.c │ │ ├── T620_Timer0_two_8bitTimers.c │ │ ├── T620_Timer2_16bitReloadTimer.c │ │ ├── T620_Timer2_two_8bitTimers.c │ │ └── T620_Timer3_RTC.c │ ├── UART │ │ ├── T620_UART0_Interrupt.c │ │ ├── T620_UART_MultiUART.c │ │ └── T620_UART_STDIO.c │ ├── USB_Bulk │ │ ├── Driver_Source │ │ │ ├── Bulk Driver Reference Manual.pdf │ │ │ ├── ReadMe.txt │ │ │ ├── bulkdev.c │ │ │ ├── bulkdev.h │ │ │ ├── bulkpnp.c │ │ │ ├── bulkpnp.h │ │ │ ├── bulkpwr.c │ │ │ ├── bulkpwr.h │ │ │ ├── bulkrwr.c │ │ │ ├── bulkrwr.h │ │ │ ├── bulkusb.bmf │ │ │ ├── bulkusb.c │ │ │ ├── bulkusb.h │ │ │ ├── bulkusb.mof │ │ │ ├── bulkusb.rc │ │ │ ├── bulkusr.h │ │ │ ├── bulkwdm98.c │ │ │ ├── bulkwdm98.cpp │ │ │ ├── bulkwdm98.h │ │ │ ├── bulkwmi.c │ │ │ ├── bulkwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ ├── sources │ │ │ └── sources.txt │ │ ├── F32x_BulkFileTransfer.exe │ │ ├── Firmware │ │ │ ├── Cleanup.bat │ │ │ ├── ReadMe.txt │ │ │ ├── T620_USB0_Bulk.wsp │ │ │ ├── T620_USB_Config.h │ │ │ ├── T620_USB_Descriptors.c │ │ │ ├── T620_USB_Descriptors.h │ │ │ ├── T620_USB_ISR.c │ │ │ ├── T620_USB_Main.c │ │ │ ├── T620_USB_Main.h │ │ │ ├── T620_USB_Registers.h │ │ │ ├── T620_USB_Request.h │ │ │ ├── T620_USB_Standard_Requests.c │ │ │ ├── T620_USB_Structs.h │ │ │ ├── T620_USB_Utilities.c │ │ │ ├── test_receive.txt │ │ │ ├── test_transfer.txt │ │ │ └── test_transfer_too_long.txt │ │ ├── Host Application Source │ │ │ ├── F32x_BulkFileTransfer.cpp │ │ │ ├── F32x_BulkFileTransfer.dsp │ │ │ ├── F32x_BulkFileTransfer.h │ │ │ ├── F32x_BulkFileTransfer.rc │ │ │ ├── F32x_BulkFileTransfer.sln │ │ │ ├── F32x_BulkFileTransfer.vcproj │ │ │ ├── F32x_BulkFileTransferDlg.cpp │ │ │ ├── F32x_BulkFileTransferDlg.h │ │ │ ├── F32x_BulkFileTransferFunctions.h │ │ │ ├── F32x_BulkTransferFunctions.cpp │ │ │ ├── Ioctls.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── F32x_BulkFileTransfer.rc2 │ │ │ │ ├── SilabsLogo.ico │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiBulk.sys │ │ └── SilabsBulk.inf │ ├── USB_HID │ │ ├── BlinkyExample │ │ │ ├── F3xx_Blink_Control.h │ │ │ ├── F3xx_Blink_Control_F320.c │ │ │ ├── F3xx_Blink_Control_F326.c │ │ │ ├── F3xx_Blink_Control_F340.c │ │ │ ├── F3xx_Blink_Control_F380.c │ │ │ ├── F3xx_Blink_Control_T620.c │ │ │ ├── F3xx_Blink_Control_T622.c │ │ │ ├── F3xx_BlinkyExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HID_Blinky.exe │ │ │ ├── Host │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ ├── HID_Blinky.h │ │ │ │ ├── HID_Blinky.rc │ │ │ │ ├── HID_Blinky.sln │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ ├── res │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ ├── FirmwareTemplate │ │ │ ├── F320_DEFAULT_CustomApp.c │ │ │ ├── F326_DEFAULT_CustomApp.c │ │ │ ├── F340_DEFAULT_CustomApp.c │ │ │ ├── F380_DEFAULT_CustomApp.c │ │ │ ├── F3xx_USB0_CustomApp.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_FirmwareTemplate.wsp │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ ├── T620_DEFAULT_CustomApp.c │ │ │ ├── T622_DEFAULT_CustomApp.c │ │ │ └── c8051f3xx.h │ │ ├── HIDtoUARTExample │ │ │ ├── F3xx_HIDtoUART.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HIDtoUART.wsp │ │ │ ├── Host │ │ │ │ ├── HID_Blinky │ │ │ │ │ ├── HID_Blinky.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ │ │ ├── HID_Blinky.h │ │ │ │ │ │ ├── HID_Blinky.rc │ │ │ │ │ │ ├── HID_Blinky.sln │ │ │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ │ ├── res │ │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ └── HIDtoUART │ │ │ │ │ ├── HIDtoUART.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ ├── HIDtoUART.cpp │ │ │ │ │ ├── HIDtoUART.h │ │ │ │ │ ├── HIDtoUART.rc │ │ │ │ │ ├── HIDtoUART.sln │ │ │ │ │ ├── HIDtoUART.vcproj │ │ │ │ │ ├── HIDtoUART.vcproj.vspscc │ │ │ │ │ ├── HIDtoUART.vssscc │ │ │ │ │ ├── HIDtoUARTDlg.cpp │ │ │ │ │ ├── HIDtoUARTDlg.h │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ ├── res │ │ │ │ │ ├── HIDtoUART.ico │ │ │ │ │ └── HIDtoUART.rc2 │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ ├── T620_HIDtoUART.c │ │ │ └── c8051f3xx.h │ │ └── MouseExample │ │ │ ├── F320_USB0_Mouse.c │ │ │ ├── F326_USB0_Mouse.c │ │ │ ├── F340_USB0_Mouse.c │ │ │ ├── F380_USB0_Mouse.c │ │ │ ├── F3xx_MouseExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Mouse.h │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ ├── T620_USB0_Mouse.c │ │ │ ├── T622_USB0_Mouse.c │ │ │ └── c8051f3xx.h │ ├── USB_Interrupt │ │ ├── Driver_Source │ │ │ ├── ReadMe.txt │ │ │ ├── intdev.c │ │ │ ├── intdev.h │ │ │ ├── intpnp.c │ │ │ ├── intpnp.h │ │ │ ├── intpwr.c │ │ │ ├── intpwr.h │ │ │ ├── intrwr.c │ │ │ ├── intrwr.h │ │ │ ├── intusb.bmf │ │ │ ├── intusb.c │ │ │ ├── intusb.h │ │ │ ├── intusb.mof │ │ │ ├── intusb.rc │ │ │ ├── intusr.h │ │ │ ├── intwdm98.c │ │ │ ├── intwdm98.h │ │ │ ├── intwmi.c │ │ │ ├── intwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ └── sources │ │ ├── Firmware │ │ │ ├── Cleanup.bat │ │ │ ├── Interrupt Firmware Reference Manual.pdf │ │ │ ├── ReadMe.txt │ │ │ ├── T620_USB0_Interrupt.wsp │ │ │ ├── T620_USB_Descriptor.c │ │ │ ├── T620_USB_Descriptor.h │ │ │ ├── T620_USB_ISR.c │ │ │ ├── T620_USB_Main.c │ │ │ ├── T620_USB_Main.h │ │ │ ├── T620_USB_Register.h │ │ │ └── T620_USB_Standard_Requests.c │ │ ├── Host Application Source │ │ │ ├── 3DMeterCtrl.cpp │ │ │ ├── 3DMeterCtrl.h │ │ │ ├── DynLED.h │ │ │ ├── DynamicLED.cpp │ │ │ ├── DynamicLED.h │ │ │ ├── MemDC.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── USBTest.cpp │ │ │ ├── USBTest.dsp │ │ │ ├── USBTest.h │ │ │ ├── USBTest.rc │ │ │ ├── USBTest.sln │ │ │ ├── USBTest.vcproj │ │ │ ├── USBTestDlg.cpp │ │ │ ├── USBTestDlg.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── SilabsLogo.ico │ │ │ │ ├── Thumbs.db │ │ │ │ ├── USBTest.rc2 │ │ │ │ ├── bitmap1.bmp │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiInt.sys │ │ ├── SilabsInt.inf │ │ └── USBTest.exe │ ├── USB_Suspend │ │ ├── ReadMe.txt │ │ ├── T620_USB0_Descriptor.c │ │ ├── T620_USB0_Descriptor.h │ │ ├── T620_USB0_InterruptServiceRoutine.c │ │ ├── T620_USB0_InterruptServiceRoutine.h │ │ ├── T620_USB0_Main.c │ │ ├── T620_USB0_Mouse.h │ │ ├── T620_USB0_Register.h │ │ ├── T620_USB0_ReportHandler.c │ │ ├── T620_USB0_ReportHandler.h │ │ ├── T620_USB0_Standard_Requests.c │ │ └── T620_USB0_Suspend.wsp │ └── Watchdog │ │ └── T620_Watchdog.c ├── C8051T622_3_T326_7 │ ├── Blinky │ │ ├── C8051T622.INC │ │ ├── C8051T622_defs.h │ │ ├── T622_Blinky.asm │ │ ├── T622_Blinky.c │ │ ├── T622_Blinky_Asm.wsp │ │ ├── T622_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── EPROM │ │ ├── T622_EPROM.c │ │ ├── T622_EPROM_Primitives.c │ │ ├── T622_EPROM_Primitives.h │ │ ├── T622_EPROM_Utils.c │ │ └── T622_EPROM_Utils.h │ ├── Header_Files │ │ ├── C8051T622.INC │ │ ├── C8051T622_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── T622_External_Interrupts.c │ ├── LockByte │ │ ├── LockByte.c │ │ ├── T622_LockByte.c │ │ └── T622_LockByte.wsp │ ├── Oscillators │ │ ├── T622_LFO_Idle.c │ │ ├── T622_Oscillator_CMOS.c │ │ ├── T622_Oscillator_Capacitor.c │ │ ├── T622_Oscillator_Crystal.c │ │ ├── T622_Oscillator_RC.c │ │ └── T622_Oscillator_Suspend.c │ ├── PCA │ │ ├── T622_PCA0_16Bit_PWM_Output.c │ │ ├── T622_PCA0_8Bit_PWM_Output.c │ │ ├── T622_PCA0_9-10-11Bit_PWM_Output.c │ │ ├── T622_PCA0_Capture_Input.c │ │ ├── T622_PCA0_Frequency_Output.c │ │ ├── T622_PCA0_High_Speed_Output.c │ │ └── T622_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── T622_PortMatch.c │ │ └── T622_Ports_SwitchesLEDs.c │ ├── SMBus │ │ ├── T622_SMBus_EEPROM.c │ │ ├── T622_SMBus_Master.c │ │ ├── T622_SMBus_Master_Multibyte.c │ │ ├── T622_SMBus_Multimaster.c │ │ ├── T622_SMBus_Slave.c │ │ ├── T622_SMBus_Slave_Hardware_ACK.c │ │ ├── T622_SMBus_Slave_Multibyte.c │ │ └── T622_SMBus_Slave_Multibyte_Hardware_ACK.c │ ├── SPI │ │ ├── T622_SPI0_EEPROM_Polled_Mode.c │ │ ├── T622_SPI0_Master.c │ │ └── T622_SPI0_Slave.c │ ├── Timers │ │ ├── T622_Timer0_13bitExtTimer.c │ │ ├── T622_Timer0_13bitTimer.c │ │ ├── T622_Timer0_16bitTimer.c │ │ ├── T622_Timer0_8bitReloadTimer.c │ │ ├── T622_Timer0_two_8bitTimers.c │ │ ├── T622_Timer2_16bitReloadTimer.c │ │ ├── T622_Timer2_two_8bitTimers.c │ │ └── T622_Timer3_RTC.c │ ├── UART │ │ ├── T622_UART0_Interrupt.c │ │ ├── T622_UART_MultiUART.c │ │ └── T622_UART_STDIO.c │ ├── USB_Bulk │ │ ├── Driver_Source │ │ │ ├── Bulk Driver Reference Manual.pdf │ │ │ ├── ReadMe.txt │ │ │ ├── bulkdev.c │ │ │ ├── bulkdev.h │ │ │ ├── bulkpnp.c │ │ │ ├── bulkpnp.h │ │ │ ├── bulkpwr.c │ │ │ ├── bulkpwr.h │ │ │ ├── bulkrwr.c │ │ │ ├── bulkrwr.h │ │ │ ├── bulkusb.bmf │ │ │ ├── bulkusb.c │ │ │ ├── bulkusb.h │ │ │ ├── bulkusb.mof │ │ │ ├── bulkusb.rc │ │ │ ├── bulkusr.h │ │ │ ├── bulkwdm98.c │ │ │ ├── bulkwdm98.cpp │ │ │ ├── bulkwdm98.h │ │ │ ├── bulkwmi.c │ │ │ ├── bulkwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ ├── sources │ │ │ └── sources.txt │ │ ├── F32x_BulkFileTransfer.exe │ │ ├── Firmware │ │ │ ├── ReadMe.txt │ │ │ ├── T622_USB0_Bulk.wsp │ │ │ ├── T622_USB_Config.h │ │ │ ├── T622_USB_Descriptors.c │ │ │ ├── T622_USB_Descriptors.h │ │ │ ├── T622_USB_ISR.c │ │ │ ├── T622_USB_Main.c │ │ │ ├── T622_USB_Main.h │ │ │ ├── T622_USB_Registers.h │ │ │ ├── T622_USB_Request.h │ │ │ ├── T622_USB_Standard_Requests.c │ │ │ ├── T622_USB_Structs.h │ │ │ └── T622_USB_Utilities.c │ │ ├── Host Application Source │ │ │ ├── F32x_BulkFileTransfer.cpp │ │ │ ├── F32x_BulkFileTransfer.dsp │ │ │ ├── F32x_BulkFileTransfer.h │ │ │ ├── F32x_BulkFileTransfer.rc │ │ │ ├── F32x_BulkFileTransfer.sln │ │ │ ├── F32x_BulkFileTransfer.vcproj │ │ │ ├── F32x_BulkFileTransferDlg.cpp │ │ │ ├── F32x_BulkFileTransferDlg.h │ │ │ ├── F32x_BulkFileTransferFunctions.h │ │ │ ├── F32x_BulkTransferFunctions.cpp │ │ │ ├── Ioctls.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── F32x_BulkFileTransfer.rc2 │ │ │ │ ├── SilabsLogo.ico │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiBulk.sys │ │ └── SilabsBulk.inf │ ├── USB_HID │ │ ├── BlinkyExample │ │ │ ├── F3xx_Blink_Control.h │ │ │ ├── F3xx_Blink_Control_F320.c │ │ │ ├── F3xx_Blink_Control_F326.c │ │ │ ├── F3xx_Blink_Control_F340.c │ │ │ ├── F3xx_Blink_Control_F380.c │ │ │ ├── F3xx_Blink_Control_T620.c │ │ │ ├── F3xx_Blink_Control_T622.c │ │ │ ├── F3xx_BlinkyExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HID_Blinky.exe │ │ │ ├── Host │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ ├── HID_Blinky.h │ │ │ │ ├── HID_Blinky.rc │ │ │ │ ├── HID_Blinky.sln │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ ├── res │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ └── c8051f3xx.h │ │ ├── FirmwareTemplate │ │ │ ├── F320_DEFAULT_CustomApp.c │ │ │ ├── F326_DEFAULT_CustomApp.c │ │ │ ├── F340_DEFAULT_CustomApp.c │ │ │ ├── F380_DEFAULT_CustomApp.c │ │ │ ├── F3xx_USB0_CustomApp.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_FirmwareTemplate.wsp │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ ├── T620_DEFAULT_CustomApp.c │ │ │ ├── T622_DEFAULT_CustomApp.c │ │ │ └── c8051f3xx.h │ │ ├── HIDtoUARTExample │ │ │ ├── F3xx_HIDtoUART.h │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── HIDtoUART.wsp │ │ │ ├── Host │ │ │ │ ├── HID_Blinky │ │ │ │ │ ├── HID_Blinky.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ │ ├── HID_Blinky.cpp │ │ │ │ │ │ ├── HID_Blinky.h │ │ │ │ │ │ ├── HID_Blinky.rc │ │ │ │ │ │ ├── HID_Blinky.sln │ │ │ │ │ │ ├── HID_Blinky.vcproj │ │ │ │ │ │ ├── HID_Blinky.vcproj.vspscc │ │ │ │ │ │ ├── HID_Blinky.vssscc │ │ │ │ │ │ ├── HID_BlinkyDlg.cpp │ │ │ │ │ │ ├── HID_BlinkyDlg.h │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ │ ├── res │ │ │ │ │ │ ├── HID_Blinky.ico │ │ │ │ │ │ └── HID_Blinky.rc2 │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ └── HIDtoUART │ │ │ │ │ ├── HIDtoUART.exe │ │ │ │ │ ├── SLABHIDDevice.dll │ │ │ │ │ └── Source │ │ │ │ │ ├── HIDtoUART.cpp │ │ │ │ │ ├── HIDtoUART.h │ │ │ │ │ ├── HIDtoUART.rc │ │ │ │ │ ├── HIDtoUART.sln │ │ │ │ │ ├── HIDtoUART.vcproj │ │ │ │ │ ├── HIDtoUART.vcproj.vspscc │ │ │ │ │ ├── HIDtoUART.vssscc │ │ │ │ │ ├── HIDtoUARTDlg.cpp │ │ │ │ │ ├── HIDtoUARTDlg.h │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── SLABHIDDevice.h │ │ │ │ │ ├── SLABHIDDevice.lib │ │ │ │ │ ├── res │ │ │ │ │ ├── HIDtoUART.ico │ │ │ │ │ └── HIDtoUART.rc2 │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ ├── ReadMe.txt │ │ │ ├── T622_HIDtoUART.c │ │ │ └── c8051f3xx.h │ │ └── MouseExample │ │ │ ├── F320_USB0_Mouse.c │ │ │ ├── F326_USB0_Mouse.c │ │ │ ├── F340_USB0_Mouse.c │ │ │ ├── F380_USB0_Mouse.c │ │ │ ├── F3xx_MouseExample.wsp │ │ │ ├── F3xx_USB0_Descriptor.c │ │ │ ├── F3xx_USB0_Descriptor.h │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.c │ │ │ ├── F3xx_USB0_InterruptServiceRoutine.h │ │ │ ├── F3xx_USB0_Main.c │ │ │ ├── F3xx_USB0_Mouse.h │ │ │ ├── F3xx_USB0_Register.h │ │ │ ├── F3xx_USB0_ReportHandler.c │ │ │ ├── F3xx_USB0_ReportHandler.h │ │ │ ├── F3xx_USB0_Standard_Requests.c │ │ │ ├── ReadMe.txt │ │ │ ├── T620_USB0_Mouse.c │ │ │ ├── T622_USB0_Mouse.c │ │ │ └── c8051f3xx.h │ ├── USB_Interrupt │ │ ├── Driver_Source │ │ │ ├── ReadMe.txt │ │ │ ├── intdev.c │ │ │ ├── intdev.h │ │ │ ├── intpnp.c │ │ │ ├── intpnp.h │ │ │ ├── intpwr.c │ │ │ ├── intpwr.h │ │ │ ├── intrwr.c │ │ │ ├── intrwr.h │ │ │ ├── intusb.bmf │ │ │ ├── intusb.c │ │ │ ├── intusb.h │ │ │ ├── intusb.mof │ │ │ ├── intusb.rc │ │ │ ├── intusr.h │ │ │ ├── intwdm98.c │ │ │ ├── intwdm98.h │ │ │ ├── intwmi.c │ │ │ ├── intwmi.h │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── resource.h │ │ │ └── sources │ │ ├── Firmware │ │ │ ├── Interrupt Firmware Reference Manual.pdf │ │ │ ├── ReadMe.txt │ │ │ ├── T622_USB0_Interrupt.wsp │ │ │ ├── T622_USB_Descriptor.c │ │ │ ├── T622_USB_Descriptor.h │ │ │ ├── T622_USB_ISR.c │ │ │ ├── T622_USB_Main.c │ │ │ ├── T622_USB_Main.h │ │ │ ├── T622_USB_Register.h │ │ │ └── T622_USB_Standard_Requests.c │ │ ├── Host Application Source │ │ │ ├── 3DMeterCtrl.cpp │ │ │ ├── 3DMeterCtrl.h │ │ │ ├── DynLED.h │ │ │ ├── DynamicLED.cpp │ │ │ ├── DynamicLED.h │ │ │ ├── MemDC.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── USBTest.cpp │ │ │ ├── USBTest.dsp │ │ │ ├── USBTest.h │ │ │ ├── USBTest.rc │ │ │ ├── USBTest.sln │ │ │ ├── USBTest.vcproj │ │ │ ├── USBTestDlg.cpp │ │ │ ├── USBTestDlg.h │ │ │ ├── UsbIF.cpp │ │ │ ├── UsbIF.h │ │ │ ├── res │ │ │ │ ├── SilabsLogo.ico │ │ │ │ ├── Thumbs.db │ │ │ │ ├── USBTest.rc2 │ │ │ │ ├── bitmap1.bmp │ │ │ │ └── blackchip.ico │ │ │ ├── resource.h │ │ │ └── usb100.h │ │ ├── ReadMe.txt │ │ ├── SiInt.sys │ │ ├── SilabsInt.inf │ │ └── USBTest.exe │ ├── USB_Suspend │ │ ├── ReadMe.txt │ │ ├── T622_USB0_Descriptor.c │ │ ├── T622_USB0_Descriptor.h │ │ ├── T622_USB0_InterruptServiceRoutine.c │ │ ├── T622_USB0_InterruptServiceRoutine.h │ │ ├── T622_USB0_Main.c │ │ ├── T622_USB0_Mouse.h │ │ ├── T622_USB0_Register.h │ │ ├── T622_USB0_ReportHandler.c │ │ ├── T622_USB0_ReportHandler.h │ │ ├── T622_USB0_Standard_Requests.c │ │ └── T622_USB0_Suspend.wsp │ └── Watchdog │ │ └── T622_Watchdog.c ├── C8051T63x │ ├── ADC │ │ └── T630_ADC0_ExternalInput.c │ ├── Blinky │ │ ├── C8051T630.INC │ │ ├── C8051T630_defs.h │ │ ├── T630_Blinky.asm │ │ ├── T630_Blinky.c │ │ ├── T630_Blinky_Asm.wsp │ │ ├── T630_Blinky_C.wsp │ │ └── compiler_defs.h │ ├── Comparators │ │ └── T630_Comparator_Suspend.c │ ├── DAC │ │ └── T630_IDA0_SineWave.c │ ├── Header_Files │ │ ├── C8051T630.INC │ │ ├── C8051T630_defs.h │ │ └── compiler_defs.h │ ├── Interrupts │ │ └── T630_External_Interrupts.c │ ├── Oscillators │ │ ├── T63x_LFO_Idle.c │ │ ├── T63x_Oscillator_CMOS.c │ │ ├── T63x_Oscillator_Capacitor.c │ │ └── T63x_Oscillator_RC.c │ ├── PCA │ │ ├── T630_PCA0_16Bit_PWM_Output.c │ │ ├── T630_PCA0_8Bit_PWM_Output.c │ │ ├── T630_PCA0_Frequency_Output.c │ │ ├── T630_PCA0_High_Speed_Output.c │ │ └── T630_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ ├── T630_PortMatch_Suspend.c │ │ └── T630_Ports_SwitchLED.c │ ├── SMBus │ │ ├── T630_SMBus_EEPROM.c │ │ ├── T630_SMBus_Master.c │ │ ├── T630_SMBus_Master_Multibyte.c │ │ ├── T630_SMBus_Slave.c │ │ └── T630_SMBus_Slave_Multibyte.c │ ├── SPI │ │ ├── T630_SPI0_EEPROM_Polled_Mode.c │ │ ├── T630_SPI0_Master.c │ │ └── T630_SPI0_Slave.c │ ├── Timers │ │ ├── T630_Timer0_13bitTimer.c │ │ ├── T630_Timer0_16bitTimer.c │ │ ├── T630_Timer0_8bitReloadTimer.c │ │ ├── T630_Timer2_16bitReloadTimer.c │ │ ├── T630_Timer2_two_8bitTimers.c │ │ └── T630_Timer3_16bitReloadTimer_LFO_Suspend.c │ ├── UART │ │ ├── T630_UART0_Interrupt.c │ │ └── T630_UART0_STDIO.c │ └── Watchdog │ │ └── T630_Watchdog.c ├── CP240x │ └── CP240x_LCD_Example │ │ ├── DISPLAY_DIGITS_SMBUS.hex │ │ ├── DISPLAY_DIGITS_SPI.hex │ │ ├── DISPLAY_VOLTAGE_SMBUS.hex │ │ ├── DISPLAY_VOLTAGE_SPI.hex │ │ ├── IMEASURE_SHUTDOWN_SMBUS.hex │ │ ├── IMEASURE_SHUTDOWN_SPI.hex │ │ ├── IMEASURE_ULP_LCD_FULLTEXT_SMBUS.hex │ │ ├── IMEASURE_ULP_LCD_FULLTEXT_SPI.hex │ │ ├── IMEASURE_ULP_LCD_NOTEXT_SMBUS.hex │ │ ├── IMEASURE_ULP_LCD_NOTEXT_SPI.hex │ │ ├── IMEASURE_ULP_SMARTCLOCK_SMBUS.hex │ │ ├── IMEASURE_ULP_SMARTCLOCK_SPI.hex │ │ └── Source │ │ ├── C8051F930_lib.h │ │ ├── CP240x_LCD_Example.wsp │ │ ├── LCD_LIB │ │ ├── CP240x_BusInterface.h │ │ ├── CP240x_BusInterface_SMBUS.c │ │ ├── CP240x_BusInterface_SPI.c │ │ ├── CP240x_Core.c │ │ ├── CP240x_Core.h │ │ ├── CP240x_defs.h │ │ ├── CP240x_lcd.c │ │ ├── CP240x_lcd.h │ │ ├── VIM878_alphanumeric_font.c │ │ ├── lcd_lib.h │ │ ├── lcd_lib_config.h │ │ ├── lcd_lib_const.h │ │ ├── lcd_lib_portdefs.h │ │ └── lcd_lib_preprocessor.h │ │ ├── SmaRTClock.c │ │ ├── SmaRTClock.h │ │ ├── app_config.h │ │ ├── app_const.h │ │ ├── cleanup.bat │ │ ├── lcd_lib_callback.c │ │ ├── main.c │ │ ├── power.c │ │ ├── power.h │ │ └── sysclk.h ├── CP250x │ ├── CP2501_NoScreen │ │ ├── CP250x_API.h │ │ ├── CP250x_Buffer_Struct.h │ │ ├── CP250x_Configuration.c │ │ ├── CP250x_Configuration.h │ │ ├── CP250x_Main.c │ │ ├── CP250x_NoScreen_Raisonance.wsp │ │ ├── CP250x_USB_Descriptor.c │ │ └── STARTUP.A51 │ ├── CP2501_SMBus │ │ ├── CP250x_API.h │ │ ├── CP250x_Buffer_Struct.h │ │ ├── CP250x_Configuration.c │ │ ├── CP250x_Configuration.h │ │ ├── CP250x_Main.c │ │ ├── CP250x_SMBus_Raisonance.wsp │ │ ├── CP250x_USB_Descriptor.c │ │ ├── Cleanup_Keil_CP250x.bat │ │ ├── STARTUP.A51 │ │ └── compiler_defs.h │ ├── CP2501_SPI │ │ ├── CP250x_API.h │ │ ├── CP250x_Buffer_Struct.h │ │ ├── CP250x_Configuration.c │ │ ├── CP250x_Configuration.h │ │ ├── CP250x_Main.c │ │ ├── CP250x_SPI_Raisonance.wsp │ │ ├── CP250x_USB_Descriptor.c │ │ ├── Cleanup_Keil_CP250x.bat │ │ ├── STARTUP.A51 │ │ └── compiler_defs.h │ └── CP2501_UART │ │ ├── CP250x_API.h │ │ ├── CP250x_Buffer_Struct.h │ │ ├── CP250x_Configuration.c │ │ ├── CP250x_Configuration.h │ │ ├── CP250x_Main.c │ │ ├── CP250x_UART_Raisonance.wsp │ │ ├── CP250x_USB_Descriptor.c │ │ ├── Cleanup_Keil_CP250x.bat │ │ ├── STARTUP.A51 │ │ └── compiler_defs.h ├── Si100x │ ├── ADC │ │ ├── Si100x_ADC0_BurstMode.c │ │ └── Si100x_ADC0_ExternalInput.c │ ├── Blinky │ │ ├── Si1000_defs.h │ │ ├── Si100x_Blinky.c │ │ ├── Si100x_Blinky_C_Keil.wsp │ │ ├── Si100x_Blinky_C_Raisonance.wsp │ │ └── compiler_defs.h │ ├── CRC │ │ └── Si100x_CRC.c │ ├── CapTouchSense │ │ └── Si100x_CapTouchSense_Tune.c │ ├── EZRadioPRO │ │ ├── PreProcessorPHY │ │ │ ├── hardware_defs.h │ │ │ ├── mainRx.c │ │ │ ├── mainTx.c │ │ │ ├── ppPhy.c │ │ │ ├── ppPhy.h │ │ │ ├── ppPhyIfFilterBandwidth.h │ │ │ ├── ppPhyRx_Keil.wsp │ │ │ ├── ppPhyRx_Rais.wsp │ │ │ ├── ppPhyRx_SDCC.wsp │ │ │ ├── ppPhyTx_Keil.wsp │ │ │ ├── ppPhyTx_Rais.wsp │ │ │ ├── ppPhyTx_SDCC.wsp │ │ │ ├── ppPhy_const.c │ │ │ ├── ppPhy_const.h │ │ │ └── ppPhy_defs.h │ │ ├── RunTimePHY │ │ │ ├── RunTimePhyRx_Keil.wsp │ │ │ ├── RunTimePhyRx_Rais.wsp │ │ │ ├── RunTimePhyRx_SDCC.wsp │ │ │ ├── RunTimePhyTx_Keil.wsp │ │ │ ├── RunTimePhyTx_Rais.wsp │ │ │ ├── RunTimePhyTx_SDCC.wsp │ │ │ ├── hardware_defs.h │ │ │ ├── mainRx.c │ │ │ ├── mainTx.c │ │ │ ├── rtPhy.c │ │ │ ├── rtPhy.h │ │ │ ├── rtPhy_const.c │ │ │ ├── rtPhy_const.h │ │ │ └── rtPhy_defs.h │ │ ├── RxRSSI │ │ │ └── Si100x_RxRSSI.c │ │ ├── SPI_PassThrough │ │ │ ├── SPI_PassThrough_Si1000.c │ │ │ ├── SPI_PassThrough_Si1000.hex │ │ │ ├── SPI_PassThrough_Si1004.c │ │ │ ├── SPI_PassThrough_Si1004.hex │ │ │ └── SPI_PassThrough_Si101x.hex │ │ ├── TxSpectrum │ │ │ └── Si100x_TxSpectrum.c │ │ └── TxTone │ │ │ └── Si100x_TxTone.c │ ├── Header_Files │ │ ├── Si1000_defs.h │ │ └── compiler_defs.h │ ├── IREF │ │ └── Si100x_IREF0.c │ ├── Interrupts │ │ └── Si100x_External_Interrupts.c │ ├── Oscillators │ │ ├── Si100x_Oscillator_CMOS.c │ │ ├── Si100x_Oscillator_Capacitor.c │ │ ├── Si100x_Oscillator_Crystal.c │ │ ├── Si100x_Oscillator_LowPower.c │ │ ├── Si100x_Oscillator_Precision.c │ │ ├── Si100x_Oscillator_RC.c │ │ ├── Si100x_Oscillator_SelfOscillate.c │ │ ├── Si100x_Oscillator_SpreadSpectrum.c │ │ └── Si100x_Oscillator_smaRTClock.c │ ├── PCA │ │ ├── Si100x_PCA0_16Bit_PWM_Output.c │ │ ├── Si100x_PCA0_8Bit_PWM_Output.c │ │ ├── Si100x_PCA0_Capture_Input.c │ │ ├── Si100x_PCA0_Frequency_Output.c │ │ ├── Si100x_PCA0_High_Speed_Output.c │ │ └── Si100x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── Si100x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── Si100x_SMBus_EEPROM.c │ │ ├── Si100x_SMBus_Master.c │ │ ├── Si100x_SMBus_Master_Multibyte.c │ │ ├── Si100x_SMBus_Slave.c │ │ ├── Si100x_SMBus_Slave_Multibyte.c │ │ └── Si100x_SMBus_Slave_Multibyte_HWACK.c │ ├── SPI │ │ ├── Si100x_SPI0_EEPROM_Polled_Mode.c │ │ ├── Si100x_SPI0_Master.c │ │ └── Si100x_SPI0_Slave.c │ ├── Si10xx_Imeasure │ │ ├── Global_Const.h │ │ ├── Imeasure.a51 │ │ ├── Imeasure.h │ │ ├── Imeasure_Keil.wsp │ │ ├── Imeasure_Raisonance.wsp │ │ ├── Si10xx_Config.h │ │ └── Si10xx_Main.c │ ├── SleepMode │ │ ├── Si100x_SleepMode_PortMatchWake │ │ │ ├── Si1000_lib.h │ │ │ ├── Si100x_SleepMode_PortMatchWake.c │ │ │ ├── Si100x_SleepMode_PortMatchWake_Keil.wsp │ │ │ ├── Si100x_SleepMode_PortMatchWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ │ ├── Si100x_SleepMode_Template │ │ │ ├── Si1000_lib.h │ │ │ ├── Si100x_SleepMode_Template_Keil.wsp │ │ │ ├── Si100x_SleepMode_Template_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── main.c │ │ │ ├── power.c │ │ │ └── power.h │ │ └── Si100x_SleepMode_smaRTClockWake │ │ │ ├── Si1000_lib.h │ │ │ ├── Si100x_SleepMode_smaRTClockWake.c │ │ │ ├── Si100x_SleepMode_smaRTClockWake_Keil.wsp │ │ │ ├── Si100x_SleepMode_smaRTClockWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ ├── Timers │ │ ├── SI100X_TIMER0_8BITRELOADTIMER │ │ ├── Si100x_Timer0_13bitExtTimer.c │ │ ├── Si100x_Timer0_13bitTimer.c │ │ ├── Si100x_Timer0_16bitTimer.c │ │ ├── Si100x_Timer0_8bitReloadTimer.c │ │ ├── Si100x_Timer0_two_8bitTimers.c │ │ ├── Si100x_Timer2_16bitReloadTimer.c │ │ └── Si100x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── SDCC Includes │ │ │ ├── Read Me.txt │ │ │ ├── sdcc_stdio.c │ │ │ └── sdcc_stdio.h │ │ ├── Si100x_UART0_Interrupt.c │ │ └── Si100x_UART0_STDIO.c │ ├── WakeOnUART │ │ └── Si100x_WakeOnUART.c │ └── Watchdog │ │ └── Si100x_Watchdog.c ├── Si101x │ ├── ADC │ │ ├── Si101x_ADC0_12bit_ExternalInput.c │ │ ├── Si101x_ADC0_BurstMode.c │ │ └── Si101x_ADC0_ExternalInput.c │ ├── Blinky │ │ ├── Si1010_defs.h │ │ ├── Si101x_Blinky.c │ │ ├── Si101x_Blinky_C_Keil.wsp │ │ ├── Si101x_Blinky_C_Raisonance.wsp │ │ └── compiler_defs.h │ ├── CRC │ │ └── Si101x_CRC.c │ ├── CapTouchSense │ │ └── Si101x_CapTouchSense_Tune.c │ ├── EZRadioPRO │ │ ├── PreProcessorPHY │ │ │ ├── hardware_defs.h │ │ │ ├── mainRx.c │ │ │ ├── mainTx.c │ │ │ ├── ppPhy.c │ │ │ ├── ppPhy.h │ │ │ ├── ppPhyIfFilterBandwidth.h │ │ │ ├── ppPhyRx_Keil.wsp │ │ │ ├── ppPhyRx_Rais.wsp │ │ │ ├── ppPhyRx_SDCC.wsp │ │ │ ├── ppPhyTx_Keil.wsp │ │ │ ├── ppPhyTx_Rais.wsp │ │ │ ├── ppPhyTx_SDCC.wsp │ │ │ ├── ppPhy_const.c │ │ │ ├── ppPhy_const.h │ │ │ └── ppPhy_defs.h │ │ ├── RunTimePHY │ │ │ ├── RunTimePhyRx_Keil.wsp │ │ │ ├── RunTimePhyRx_Rais.wsp │ │ │ ├── RunTimePhyRx_SDCC.wsp │ │ │ ├── RunTimePhyTx_Keil.wsp │ │ │ ├── RunTimePhyTx_Rais.wsp │ │ │ ├── RunTimePhyTx_SDCC.wsp │ │ │ ├── hardware_defs.h │ │ │ ├── mainRx.c │ │ │ ├── mainTx.c │ │ │ ├── rtPhy.c │ │ │ ├── rtPhy.h │ │ │ ├── rtPhy_const.c │ │ │ ├── rtPhy_const.h │ │ │ └── rtPhy_defs.h │ │ ├── RxRSSI │ │ │ └── Si101x_RxRSSI.c │ │ ├── SPI_PassThrough │ │ │ ├── SPI_PassThrough_Si101x.c │ │ │ └── SPI_PassThrough_Si101x.hex │ │ ├── TxSpectrum │ │ │ └── Si101x_TxSpectrum.c │ │ └── TxTone │ │ │ └── Si101x_TxTone.c │ ├── Header_Files │ │ ├── Si1010_defs.h │ │ └── compiler_defs.h │ ├── IREF │ │ └── Si101x_IREF0.c │ ├── Interrupts │ │ └── Si101x_External_Interrupts.c │ ├── Oscillators │ │ ├── Si101x_Oscillator_CMOS.c │ │ ├── Si101x_Oscillator_Capacitor.c │ │ ├── Si101x_Oscillator_Crystal.c │ │ ├── Si101x_Oscillator_LowPower.c │ │ ├── Si101x_Oscillator_Precision.c │ │ ├── Si101x_Oscillator_RC.c │ │ ├── Si101x_Oscillator_SelfOscillate.c │ │ ├── Si101x_Oscillator_SpreadSpectrum.c │ │ └── Si101x_Oscillator_smaRTClock.c │ ├── PCA │ │ ├── Si101x_PCA0_16Bit_PWM_Output.c │ │ ├── Si101x_PCA0_8Bit_PWM_Output.c │ │ ├── Si101x_PCA0_Capture_Input.c │ │ ├── Si101x_PCA0_Frequency_Output.c │ │ ├── Si101x_PCA0_High_Speed_Output.c │ │ └── Si101x_PCA0_Software_Timer_Blinky.c │ ├── PortIO │ │ └── Si101x_Ports_SwitchLED.c │ ├── SMBus │ │ ├── Si101x_SMBus_EEPROM.c │ │ ├── Si101x_SMBus_Master.c │ │ ├── Si101x_SMBus_Master_Multibyte.c │ │ ├── Si101x_SMBus_Slave.c │ │ ├── Si101x_SMBus_Slave_Multibyte.c │ │ └── Si101x_SMBus_Slave_Multibyte_HWACK.c │ ├── SPI │ │ ├── Si101x_SPI0_EEPROM_Polled_Mode.c │ │ ├── Si101x_SPI0_Master.c │ │ └── Si101x_SPI0_Slave.c │ ├── Si10xx_Imeasure │ │ ├── Global_Const.h │ │ ├── Imeasure.a51 │ │ ├── Imeasure.h │ │ ├── Imeasure_Keil.wsp │ │ ├── Imeasure_Raisonance.wsp │ │ ├── Si10xx_Config.h │ │ └── Si10xx_Main.c │ ├── SleepMode │ │ ├── Si101x_SleepMode_PortMatchWake │ │ │ ├── Si1010_lib.h │ │ │ ├── Si101x_SleepMode_PortMatchWake.c │ │ │ ├── Si101x_SleepMode_PortMatchWake_Keil.wsp │ │ │ ├── Si101x_SleepMode_PortMatchWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ │ ├── Si101x_SleepMode_Template │ │ │ ├── Si1010_lib.h │ │ │ ├── Si101x_SleepMode_Template_Keil.wsp │ │ │ ├── Si101x_SleepMode_Template_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── main.c │ │ │ ├── power.c │ │ │ └── power.h │ │ ├── Si101x_SleepMode_smaRTClockWake │ │ │ ├── Si1010_lib.h │ │ │ ├── Si101x_SleepMode_smaRTClockWake.c │ │ │ ├── Si101x_SleepMode_smaRTClockWake_Keil.wsp │ │ │ ├── Si101x_SleepMode_smaRTClockWake_Raisonance.wsp │ │ │ ├── SmaRTClock.c │ │ │ ├── SmaRTClock.h │ │ │ ├── power.c │ │ │ └── power.h │ │ └── Si101x_smaRTClock_Date_Tracker.c │ ├── Timers │ │ ├── Si101x_Timer0_13bitExtTimer.c │ │ ├── Si101x_Timer0_13bitTimer.c │ │ ├── Si101x_Timer0_16bitTimer.c │ │ ├── Si101x_Timer0_8bitReloadTimer.c │ │ ├── Si101x_Timer0_two_8bitTimers.c │ │ ├── Si101x_Timer2_16bitReloadTimer.c │ │ └── Si101x_Timer2_two_8bitTimers.c │ ├── UART │ │ ├── SDCC Includes │ │ │ ├── Read Me.txt │ │ │ ├── sdcc_stdio.c │ │ │ └── sdcc_stdio.h │ │ ├── Si101x_UART0_Interrupt.c │ │ └── Si101x_UART0_STDIO.c │ ├── WakeOnUART │ │ └── Si101x_WakeOnUART.c │ └── Watchdog │ │ └── Si101x_Watchdog.c └── Si102x_3x │ ├── ADC │ ├── Si102x_ADC0_12bit_ExternalInput.c │ ├── Si102x_ADC0_BurstMode.c │ └── Si102x_ADC0_ExternalInput.c │ ├── Blinky │ ├── Si1020.INC │ ├── Si1020_defs.h │ ├── Si102x_Blinky.c │ ├── Si102x_Blinky_C_Keil.wsp │ ├── Si102x_Blinky_C_Raisonance.wsp │ ├── Si102x_Blinky_C_SDCC.wsp │ └── compiler_defs.h │ ├── CRC0 │ └── Si102x_CRC0.c │ ├── DMA │ ├── AES │ │ ├── AES_BlockCipher.c │ │ ├── AES_BlockCipher.h │ │ ├── AES_Test.c │ │ ├── AES_Test_Keil.wsp │ │ ├── AES_Test_Rais.wsp │ │ ├── AES_Test_SDCC.wsp │ │ ├── AES_defs.h │ │ ├── CBC_EncryptDecrypt.c │ │ ├── CBC_EncryptDecrypt.h │ │ ├── CTR_EncryptDecrypt.c │ │ ├── CTR_EncryptDecrypt.h │ │ ├── DMA_defs.h │ │ ├── GenerateDecryptionKey.c │ │ ├── GenerateDecryptionKey.h │ │ ├── TestVectors.c │ │ └── TestVectors.h │ ├── CRC1 │ │ ├── CRC1.c │ │ ├── CRC1.h │ │ ├── CRC1_Test.c │ │ ├── CRC1_TestVectors.c │ │ ├── CRC1_TestVectors.h │ │ ├── CRC1_Test_Keil.wsp │ │ ├── CRC1_Test_Rais.wsp │ │ ├── CRC1_Test_SDCC.wsp │ │ └── DMA_defs.h │ └── ENC │ │ ├── DMA_defs.h │ │ ├── ENC_Test.c │ │ ├── ENC_Test_Keil.wsp │ │ ├── ENC_Test_Rais.wsp │ │ ├── ENC_Test_SDCC.wsp │ │ ├── EncoderDecoder.c │ │ ├── EncoderDecoder.h │ │ ├── TestVectors.c │ │ └── TestVectors.h │ ├── EZRadioPRO │ ├── PreProcessorPHY │ │ ├── hardware_defs.h │ │ ├── mainRx.c │ │ ├── mainTx.c │ │ ├── ppPhy.c │ │ ├── ppPhy.h │ │ ├── ppPhyIfFilterBandwidth.h │ │ ├── ppPhyRx_Keil.wsp │ │ ├── ppPhyRx_Rais.wsp │ │ ├── ppPhyRx_SDCC.wsp │ │ ├── ppPhyTx_Keil.wsp │ │ ├── ppPhyTx_Rais.wsp │ │ ├── ppPhyTx_SDCC.wsp │ │ ├── ppPhy_const.c │ │ ├── ppPhy_const.h │ │ └── ppPhy_defs.h │ ├── RunTimePHY │ │ ├── RunTimePhyRx_Keil.wsp │ │ ├── RunTimePhyRx_Rais.wsp │ │ ├── RunTimePhyRx_SDCC.wsp │ │ ├── RunTimePhyTx_Keil.wsp │ │ ├── RunTimePhyTx_Rais.wsp │ │ ├── RunTimePhyTx_SDCC.wsp │ │ ├── hardware_defs.h │ │ ├── mainRx.c │ │ ├── mainTx.c │ │ ├── rtPhy.c │ │ ├── rtPhy.h │ │ ├── rtPhy_const.c │ │ ├── rtPhy_const.h │ │ └── rtPhy_defs.h │ ├── RxRSSI │ │ └── Si102x_RxRSSI.c │ ├── TxSpectrum │ │ └── Si102x_TxSpectrum.c │ └── TxTone │ │ └── Si102x_TxTone.c │ ├── External_Interrupts │ └── Si102x_External_Interrupts.c │ ├── Header_Files │ ├── Si1020.INC │ ├── Si1020_defs.h │ └── compiler_defs.h │ ├── IREF │ ├── Si102x_IREF0.c │ └── Si102x_IREF0_PWM.c │ ├── LCD │ ├── LowPowerSleep_VIM878.c │ ├── LowPowerSleep_VIM878_Keil.wsp │ ├── LowPowerSleep_VIM878_Rais.wsp │ ├── LowPowerSleep_VIM878_SDCC.wsp │ ├── PowerManagementSi1020.c │ ├── PowerManagementSi1020.h │ ├── SmaRTClockSi1020.c │ ├── SmaRTClockSi1020.h │ ├── lcdConfig.c │ ├── lcdConfig.h │ ├── lcdPrintf.c │ ├── lcdPrintf.h │ ├── lcdPutChar_VIM878.c │ ├── lcdPutChar_VIM878.h │ ├── lcdPutString.c │ ├── lcdPutString.h │ ├── lcdTest_VIM878.c │ ├── lcdTest_VIM878_Keil.wsp │ ├── lcdTest_VIM878_Rais.wsp │ └── lcdTest_VIM878_SDCC.wsp │ ├── MeasureCurrent │ └── MeasureActiveCurrent │ │ ├── Si102x_ActiveCodeLoops.asm │ │ ├── Si102x_MeasureActiveCurrent.c │ │ └── Si102x_MeasureActiveCurrent_Keil.wsp │ ├── Oscillators │ ├── Si102x_Oscillator_CMOS.c │ ├── Si102x_Oscillator_Capacitor.c │ ├── Si102x_Oscillator_Crystal.c │ ├── Si102x_Oscillator_LowFrequency.c │ ├── Si102x_Oscillator_LowPower.c │ ├── Si102x_Oscillator_Precision.c │ ├── Si102x_Oscillator_RC.c │ ├── Si102x_Oscillator_SelfOscillate.c │ ├── Si102x_Oscillator_SmaRTClock.c │ └── Si102x_Oscillator_SpreadSpectrum.c │ ├── PCA │ ├── Si102x_PCA0_16Bit_PWM_Output.c │ ├── Si102x_PCA0_8Bit_PWM_Output.c │ ├── Si102x_PCA0_Capture_Input.c │ ├── Si102x_PCA0_Frequency_Output.c │ ├── Si102x_PCA0_High_Speed_Output.c │ └── Si102x_PCA0_Software_Timer_Blinky.c │ ├── Ports │ └── Si102x_Ports_SwitchLED.c │ ├── PulseCounter │ ├── PC0_Dual_Form_A_Keil.wsp │ ├── PC0_Dual_Form_A_Rais.wsp │ ├── PC0_Dual_Form_A_SDCC.wsp │ ├── PC0_Dual_Form_A_main.c │ ├── PC0_Quadrature_Keil.wsp │ ├── PC0_Quadrature_Rais.wsp │ ├── PC0_Quadrature_SDCC.wsp │ ├── PC0_Quadrature_main.c │ ├── PC0_Single_Form_A_Keil.wsp │ ├── PC0_Single_Form_A_Rais.wsp │ ├── PC0_Single_Form_A_SDCC.wsp │ ├── PC0_Single_Form_A_main.c │ ├── PC0_Single_Form_C_Keil.wsp │ ├── PC0_Single_Form_C_Rais.wsp │ ├── PC0_Single_Form_C_SDCC.wsp │ ├── PC0_Single_Form_C_main.c │ ├── PulseCounter.c │ ├── PulseCounter.h │ ├── SmaRTClockSi1020.c │ ├── SmaRTClockSi1020.h │ ├── Test_PulseCounter.c │ ├── Test_PulseCounter.wsp │ ├── Test_PulseCounter_Keil.wsp │ ├── Test_PulseCounter_Rais.wsp │ └── Test_PulseCounter_SDCC.wsp │ ├── SMBus │ ├── Si102x_SMBus_EEPROM.c │ ├── Si102x_SMBus_Master.c │ ├── Si102x_SMBus_Master_Multibyte.c │ ├── Si102x_SMBus_Slave.c │ ├── Si102x_SMBus_Slave_Multibyte.c │ └── Si102x_SMBus_Slave_Multibyte_HWACK.c │ ├── SPI0 │ ├── Si102x_SPI0_EEPROM_Polled_Mode.c │ ├── Si102x_SPI0_Master.c │ └── Si102x_SPI0_Slave.c │ ├── SleepMode │ ├── Si102x_SleepMode_PortMatchWake │ │ ├── PowerManagementSi1020.c │ │ ├── PowerManagementSi1020.h │ │ ├── Si102x_SleepMode_PortMatchWake.c │ │ ├── Si102x_SleepMode_PortMatchWake_Keil.wsp │ │ ├── Si102x_SleepMode_PortMatchWake_Rais.wsp │ │ ├── Si102x_SleepMode_PortMatchWake_SDCC.wsp │ │ ├── SmaRTClockSi1020.c │ │ └── SmaRTClockSi1020.h │ └── Si102x_SleepMode_smaRTClockWake │ │ ├── PowerManagementSi1020.c │ │ ├── PowerManagementSi1020.h │ │ ├── Si102x_SleepMode_SmaRTClockWake.c │ │ ├── Si102x_SleepMode_SmaRTClockWake_Keil.wsp │ │ ├── Si102x_SleepMode_SmaRTClockWake_Rais.wsp │ │ ├── Si102x_SleepMode_SmaRTClockWake_SDCC.wsp │ │ ├── SmaRTClockSi1020.c │ │ └── SmaRTClockSi1020.h │ ├── SmaRTClock │ ├── SmaRTClockSi1020.c │ ├── SmaRTClockSi1020.h │ ├── Test_SmaRTClock.c │ ├── Test_SmaRTClock_Keil.wsp │ ├── Test_SmaRTClock_Rais.wsp │ └── Test_SmaRTClock_SDCC.wsp │ ├── Timer │ ├── Si102x_Timer0_13bitExtTimer.c │ ├── Si102x_Timer0_13bitTimer.c │ ├── Si102x_Timer0_16bitTimer.c │ ├── Si102x_Timer0_8bitReloadTimer.c │ ├── Si102x_Timer0_two_8bitTimers.c │ ├── Si102x_Timer2_16bitReloadTimer.c │ └── Si102x_Timer2_two_8bitTimers.c │ ├── UART │ ├── SDCC Includes │ │ ├── Read Me.txt │ │ ├── sdcc_stdio.c │ │ └── sdcc_stdio.h │ ├── Si102x_UART0_Interrupt.c │ ├── Si102x_UART0_STDIO.c │ └── Si102x_WakeOnUART.c │ └── Watchdog │ └── Si102x_Watchdog.c └── README.md /Examples/C8051F00x_01x/Blinky/C8051F000.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Blinky/C8051F000.INC -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/Blinky/F00x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Blinky/F00x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/Blinky/F00x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Blinky/F00x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/Blinky/F00x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Blinky/F00x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/Blinky/F00x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Blinky/F00x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/Blinky/c8051F000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Blinky/c8051F000.h -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/Blinky/c8051F000_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Blinky/c8051F000_defs.h -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/DAC/F0xx_DACs_SineCosine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/DAC/F0xx_DACs_SineCosine.c -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/Header_Files/C8051F000.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Header_Files/C8051F000.INC -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/Header_Files/c8051F000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Header_Files/c8051F000.h -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/SMBus/F0xx_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/SMBus/F0xx_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/SMBus/F0xx_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/SMBus/F0xx_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/SMBus/F0xx_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/SMBus/F0xx_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/SPI/F00x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/SPI/F00x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/SPI/F00x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/SPI/F00x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/UART/F00x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/UART/F00x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/UART/F00x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/UART/F00x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F00x_01x/Watchdog/F0xx_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F00x_01x/Watchdog/F0xx_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F02x/ADC/F02x_ADC0_ExternalInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/ADC/F02x_ADC0_ExternalInput.c -------------------------------------------------------------------------------- /Examples/C8051F02x/ADC/F02x_ADC0_TempSensor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/ADC/F02x_ADC0_TempSensor.asm -------------------------------------------------------------------------------- /Examples/C8051F02x/Blinky/C8051F020.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Blinky/C8051F020.INC -------------------------------------------------------------------------------- /Examples/C8051F02x/Blinky/C8051F020_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Blinky/C8051F020_defs.h -------------------------------------------------------------------------------- /Examples/C8051F02x/Blinky/F02x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Blinky/F02x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F02x/Blinky/F02x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Blinky/F02x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F02x/Blinky/F02x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Blinky/F02x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F02x/Blinky/F02x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Blinky/F02x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F02x/Blinky/c8051F020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Blinky/c8051F020.h -------------------------------------------------------------------------------- /Examples/C8051F02x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F02x/DAC/F02x_DACs_SineCosine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/DAC/F02x_DACs_SineCosine.c -------------------------------------------------------------------------------- /Examples/C8051F02x/Header_Files/C8051F020.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Header_Files/C8051F020.INC -------------------------------------------------------------------------------- /Examples/C8051F02x/Header_Files/C8051F020_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Header_Files/C8051F020_defs.h -------------------------------------------------------------------------------- /Examples/C8051F02x/Header_Files/c8051F020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Header_Files/c8051F020.h -------------------------------------------------------------------------------- /Examples/C8051F02x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F02x/PCA/F02x_PCA0_8Bit_PWM_Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/PCA/F02x_PCA0_8Bit_PWM_Output.c -------------------------------------------------------------------------------- /Examples/C8051F02x/PCA/F02x_PCA0_Capture_Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/PCA/F02x_PCA0_Capture_Input.c -------------------------------------------------------------------------------- /Examples/C8051F02x/PortIO/F02x_Ports_SwitchLED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/PortIO/F02x_Ports_SwitchLED.c -------------------------------------------------------------------------------- /Examples/C8051F02x/SMBus/F02x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/SMBus/F02x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F02x/SMBus/F02x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/SMBus/F02x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F02x/SMBus/F02x_SMBus_Multimaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/SMBus/F02x_SMBus_Multimaster.c -------------------------------------------------------------------------------- /Examples/C8051F02x/SMBus/F02x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/SMBus/F02x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F02x/SPI/F02x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/SPI/F02x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F02x/SPI/F02x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/SPI/F02x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F02x/Timers/F02x_Timer0_13bitTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Timers/F02x_Timer0_13bitTimer.c -------------------------------------------------------------------------------- /Examples/C8051F02x/Timers/F02x_Timer0_16bitTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Timers/F02x_Timer0_16bitTimer.c -------------------------------------------------------------------------------- /Examples/C8051F02x/UART/F02x_UART1_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/UART/F02x_UART1_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F02x/Watchdog/F02x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F02x/Watchdog/F02x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F04x/ADC/F04x_ADC0_ExternalInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/ADC/F04x_ADC0_ExternalInput.c -------------------------------------------------------------------------------- /Examples/C8051F04x/Blinky/C8051F040.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Blinky/C8051F040.INC -------------------------------------------------------------------------------- /Examples/C8051F04x/Blinky/F04x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Blinky/F04x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F04x/Blinky/F04x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Blinky/F04x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F04x/Blinky/F04x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Blinky/F04x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F04x/Blinky/F04x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Blinky/F04x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F04x/Blinky/c8051F040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Blinky/c8051F040.h -------------------------------------------------------------------------------- /Examples/C8051F04x/Blinky/c8051F040_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Blinky/c8051F040_defs.h -------------------------------------------------------------------------------- /Examples/C8051F04x/CAN/F04x_CAN1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/CAN/F04x_CAN1.c -------------------------------------------------------------------------------- /Examples/C8051F04x/CAN/F04x_CAN2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/CAN/F04x_CAN2.c -------------------------------------------------------------------------------- /Examples/C8051F04x/DAC/F04x_DACs_SineCosine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/DAC/F04x_DACs_SineCosine.c -------------------------------------------------------------------------------- /Examples/C8051F04x/Header_Files/C8051F040.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Header_Files/C8051F040.INC -------------------------------------------------------------------------------- /Examples/C8051F04x/Header_Files/c8051F040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Header_Files/c8051F040.h -------------------------------------------------------------------------------- /Examples/C8051F04x/Header_Files/c8051F040_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Header_Files/c8051F040_defs.h -------------------------------------------------------------------------------- /Examples/C8051F04x/PCA/F04x_PCA0_8Bit_PWM_Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/PCA/F04x_PCA0_8Bit_PWM_Output.c -------------------------------------------------------------------------------- /Examples/C8051F04x/PCA/F04x_PCA0_Capture_Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/PCA/F04x_PCA0_Capture_Input.c -------------------------------------------------------------------------------- /Examples/C8051F04x/PortIO/F04x_Ports_SwitchLED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/PortIO/F04x_Ports_SwitchLED.c -------------------------------------------------------------------------------- /Examples/C8051F04x/SMBus/F04x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/SMBus/F04x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F04x/SMBus/F04x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/SMBus/F04x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F04x/SMBus/F04x_SMBus_Multimaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/SMBus/F04x_SMBus_Multimaster.c -------------------------------------------------------------------------------- /Examples/C8051F04x/SMBus/F04x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/SMBus/F04x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F04x/SPI/F04x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/SPI/F04x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F04x/SPI/F04x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/SPI/F04x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F04x/Timers/F04x_Timer0_13bitTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Timers/F04x_Timer0_13bitTimer.c -------------------------------------------------------------------------------- /Examples/C8051F04x/Timers/F04x_Timer0_16bitTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Timers/F04x_Timer0_16bitTimer.c -------------------------------------------------------------------------------- /Examples/C8051F04x/UART/F04x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/UART/F04x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F04x/UART/F04x_UART1_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/UART/F04x_UART1_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F04x/Watchdog/F04x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F04x/Watchdog/F04x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F06x/ADC/F06x_ADC2_ExternalInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/ADC/F06x_ADC2_ExternalInput.c -------------------------------------------------------------------------------- /Examples/C8051F06x/ADC/F06x_SAR16data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/ADC/F06x_SAR16data.c -------------------------------------------------------------------------------- /Examples/C8051F06x/Blinky/C8051F060.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Blinky/C8051F060.INC -------------------------------------------------------------------------------- /Examples/C8051F06x/Blinky/C8051F060_defs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Blinky/C8051F060_defs.H -------------------------------------------------------------------------------- /Examples/C8051F06x/Blinky/F06x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Blinky/F06x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F06x/Blinky/F06x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Blinky/F06x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F06x/Blinky/F06x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Blinky/F06x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F06x/Blinky/F06x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Blinky/F06x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F06x/Blinky/c8051F060.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Blinky/c8051F060.h -------------------------------------------------------------------------------- /Examples/C8051F06x/DAC/F06x_DACs_SineCosine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/DAC/F06x_DACs_SineCosine.c -------------------------------------------------------------------------------- /Examples/C8051F06x/Header_Files/C8051F060.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Header_Files/C8051F060.INC -------------------------------------------------------------------------------- /Examples/C8051F06x/Header_Files/C8051F060_defs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Header_Files/C8051F060_defs.H -------------------------------------------------------------------------------- /Examples/C8051F06x/Header_Files/c8051F060.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Header_Files/c8051F060.h -------------------------------------------------------------------------------- /Examples/C8051F06x/PCA/F06x_PCA0_8Bit_PWM_Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/PCA/F06x_PCA0_8Bit_PWM_Output.c -------------------------------------------------------------------------------- /Examples/C8051F06x/PCA/F06x_PCA0_Capture_Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/PCA/F06x_PCA0_Capture_Input.c -------------------------------------------------------------------------------- /Examples/C8051F06x/PortIO/F06x_Ports_SwitchLED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/PortIO/F06x_Ports_SwitchLED.c -------------------------------------------------------------------------------- /Examples/C8051F06x/SMBus/F06x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/SMBus/F06x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F06x/SMBus/F06x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/SMBus/F06x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F06x/SMBus/F06x_SMBus_Multimaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/SMBus/F06x_SMBus_Multimaster.c -------------------------------------------------------------------------------- /Examples/C8051F06x/SMBus/F06x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/SMBus/F06x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F06x/SPI/F06x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/SPI/F06x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F06x/SPI/F06x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/SPI/F06x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F06x/Timers/F06x_Timer0_13bitTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Timers/F06x_Timer0_13bitTimer.c -------------------------------------------------------------------------------- /Examples/C8051F06x/Timers/F06x_Timer0_16bitTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Timers/F06x_Timer0_16bitTimer.c -------------------------------------------------------------------------------- /Examples/C8051F06x/UART/F06x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/UART/F06x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F06x/UART/F06x_UART1_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/UART/F06x_UART1_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F06x/Watchdog/F06x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F06x/Watchdog/F06x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Banking/L51_BANK.A51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Banking/L51_BANK.A51 -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Banking/STARTUP.A51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Banking/STARTUP.A51 -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Blinky/C8051F120.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Blinky/C8051F120.INC -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Blinky/C8051F120_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Blinky/C8051F120_defs.h -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Blinky/F12x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Blinky/F12x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Blinky/F12x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Blinky/F12x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Blinky/F12x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Blinky/F12x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Blinky/F12x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Blinky/F12x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Blinky/c8051F120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Blinky/c8051F120.h -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/DAC/F12x_DACs_SineCosine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/DAC/F12x_DACs_SineCosine.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/EMIF/F12x_EMIF_AB1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/EMIF/F12x_EMIF_AB1.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Header_Files/C8051F120.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Header_Files/C8051F120.INC -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Header_Files/c8051F120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Header_Files/c8051F120.h -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/MAC/F12x_Math_MAC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/MAC/F12x_Math_MAC.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/SMBus/F12x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/SMBus/F12x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/SMBus/F12x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/SMBus/F12x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/SMBus/F12x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/SMBus/F12x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/SPI/F12x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/SPI/F12x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/SPI/F12x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/SPI/F12x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/UART/F12x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/UART/F12x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/UART/F12x_UART1_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/UART/F12x_UART1_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F12x_13x/Watchdog/F12x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F12x_13x/Watchdog/F12x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F2xx/Blinky/C8051F200.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Blinky/C8051F200.INC -------------------------------------------------------------------------------- /Examples/C8051F2xx/Blinky/F2xx_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Blinky/F2xx_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F2xx/Blinky/F2xx_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Blinky/F2xx_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F2xx/Blinky/F2xx_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Blinky/F2xx_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F2xx/Blinky/F2xx_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Blinky/F2xx_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F2xx/Blinky/c8051F200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Blinky/c8051F200.h -------------------------------------------------------------------------------- /Examples/C8051F2xx/Blinky/c8051F200_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Blinky/c8051F200_defs.h -------------------------------------------------------------------------------- /Examples/C8051F2xx/Header_Files/C8051F200.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Header_Files/C8051F200.INC -------------------------------------------------------------------------------- /Examples/C8051F2xx/Header_Files/c8051F200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Header_Files/c8051F200.h -------------------------------------------------------------------------------- /Examples/C8051F2xx/Header_Files/c8051F200_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Header_Files/c8051F200_defs.h -------------------------------------------------------------------------------- /Examples/C8051F2xx/PortIO/F2xx_Ports_SwitchLED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/PortIO/F2xx_Ports_SwitchLED.c -------------------------------------------------------------------------------- /Examples/C8051F2xx/SPI/F2xx_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/SPI/F2xx_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F2xx/SPI/F2xx_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/SPI/F2xx_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F2xx/Timers/F2xx_Timer0_13bitTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Timers/F2xx_Timer0_13bitTimer.c -------------------------------------------------------------------------------- /Examples/C8051F2xx/Timers/F2xx_Timer0_16bitTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Timers/F2xx_Timer0_16bitTimer.c -------------------------------------------------------------------------------- /Examples/C8051F2xx/UART/F2xx_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/UART/F2xx_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F2xx/UART/F2xx_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/UART/F2xx_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F2xx/Watchdog/F2xx_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F2xx/Watchdog/F2xx_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F30x/ADC/F30x_ADC0_ExternalInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/ADC/F30x_ADC0_ExternalInput.c -------------------------------------------------------------------------------- /Examples/C8051F30x/ADC/F30x_ADC0_TempSensor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/ADC/F30x_ADC0_TempSensor.asm -------------------------------------------------------------------------------- /Examples/C8051F30x/Blinky/C8051F300.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Blinky/C8051F300.INC -------------------------------------------------------------------------------- /Examples/C8051F30x/Blinky/C8051F300_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Blinky/C8051F300_defs.h -------------------------------------------------------------------------------- /Examples/C8051F30x/Blinky/F30x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Blinky/F30x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F30x/Blinky/F30x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Blinky/F30x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F30x/Blinky/F30x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Blinky/F30x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F30x/Blinky/F30x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Blinky/F30x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F30x/Blinky/c8051F300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Blinky/c8051F300.h -------------------------------------------------------------------------------- /Examples/C8051F30x/Header_Files/C8051F300.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Header_Files/C8051F300.INC -------------------------------------------------------------------------------- /Examples/C8051F30x/Header_Files/C8051F300_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Header_Files/C8051F300_defs.h -------------------------------------------------------------------------------- /Examples/C8051F30x/Header_Files/c8051F300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Header_Files/c8051F300.h -------------------------------------------------------------------------------- /Examples/C8051F30x/PCA/F30x_PCA0_8Bit_PWM_Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/PCA/F30x_PCA0_8Bit_PWM_Output.c -------------------------------------------------------------------------------- /Examples/C8051F30x/PCA/F30x_PCA0_Capture_Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/PCA/F30x_PCA0_Capture_Input.c -------------------------------------------------------------------------------- /Examples/C8051F30x/PortIO/F30x_Ports_SwitchLED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/PortIO/F30x_Ports_SwitchLED.c -------------------------------------------------------------------------------- /Examples/C8051F30x/SMBus/F30x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/SMBus/F30x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F30x/SMBus/F30x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/SMBus/F30x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F30x/SMBus/F30x_SMBus_Multimaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/SMBus/F30x_SMBus_Multimaster.c -------------------------------------------------------------------------------- /Examples/C8051F30x/SMBus/F30x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/SMBus/F30x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F30x/UART/F30x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/UART/F30x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F30x/UART/F30x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/UART/F30x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F30x/Watchdog/F30x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F30x/Watchdog/F30x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F31x/Blinky/C8051F310.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Blinky/C8051F310.INC -------------------------------------------------------------------------------- /Examples/C8051F31x/Blinky/C8051F310_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Blinky/C8051F310_defs.h -------------------------------------------------------------------------------- /Examples/C8051F31x/Blinky/F31x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Blinky/F31x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F31x/Blinky/F31x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Blinky/F31x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F31x/Blinky/F31x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Blinky/F31x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F31x/Blinky/F31x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Blinky/F31x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F31x/Blinky/c8051F310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Blinky/c8051F310.h -------------------------------------------------------------------------------- /Examples/C8051F31x/Header_Files/C8051F310.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Header_Files/C8051F310.INC -------------------------------------------------------------------------------- /Examples/C8051F31x/Header_Files/c8051F310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Header_Files/c8051F310.h -------------------------------------------------------------------------------- /Examples/C8051F31x/SMBus/F31x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/SMBus/F31x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F31x/SMBus/F31x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/SMBus/F31x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F31x/SMBus/F31x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/SMBus/F31x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F31x/SPI/F31x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/SPI/F31x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F31x/SPI/F31x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/SPI/F31x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F31x/UART/F31x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/UART/F31x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F31x/UART/F31x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/UART/F31x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F31x/Watchdog/F31x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F31x/Watchdog/F31x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F320_1/Blinky/C8051F320.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Blinky/C8051F320.INC -------------------------------------------------------------------------------- /Examples/C8051F320_1/Blinky/C8051F320_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Blinky/C8051F320_defs.h -------------------------------------------------------------------------------- /Examples/C8051F320_1/Blinky/F320_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Blinky/F320_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F320_1/Blinky/F320_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Blinky/F320_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F320_1/Blinky/F320_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Blinky/F320_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F320_1/Blinky/F320_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Blinky/F320_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F320_1/Blinky/c8051F320.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Blinky/c8051F320.h -------------------------------------------------------------------------------- /Examples/C8051F320_1/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F320_1/Header_Files/C8051F320.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Header_Files/C8051F320.INC -------------------------------------------------------------------------------- /Examples/C8051F320_1/Header_Files/c8051F320.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Header_Files/c8051F320.h -------------------------------------------------------------------------------- /Examples/C8051F320_1/SMBus/F32x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/SMBus/F32x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F320_1/SMBus/F32x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/SMBus/F32x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F320_1/SMBus/F32x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/SMBus/F32x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F320_1/SPI/F32x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/SPI/F32x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F320_1/SPI/F32x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/SPI/F32x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F320_1/UART/F32x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/UART/F32x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F320_1/USB_Bulk/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/USB_Bulk/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F320_1/USB_Bulk/SiBulk.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/USB_Bulk/SiBulk.sys -------------------------------------------------------------------------------- /Examples/C8051F320_1/USB_Bulk/SilabsBulk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/USB_Bulk/SilabsBulk.inf -------------------------------------------------------------------------------- /Examples/C8051F320_1/USB_Interrupt/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/USB_Interrupt/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F320_1/USB_Interrupt/SiInt.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/USB_Interrupt/SiInt.sys -------------------------------------------------------------------------------- /Examples/C8051F320_1/USB_Interrupt/USBTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/USB_Interrupt/USBTest.exe -------------------------------------------------------------------------------- /Examples/C8051F320_1/Watchdog/F32x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F320_1/Watchdog/F32x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F326_7/Blinky/C8051F326.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/Blinky/C8051F326.INC -------------------------------------------------------------------------------- /Examples/C8051F326_7/Blinky/C8051F326_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/Blinky/C8051F326_defs.h -------------------------------------------------------------------------------- /Examples/C8051F326_7/Blinky/F326_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/Blinky/F326_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F326_7/Blinky/F326_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/Blinky/F326_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F326_7/Blinky/F326_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/Blinky/F326_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F326_7/Blinky/F326_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/Blinky/F326_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F326_7/Blinky/c8051F326.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/Blinky/c8051F326.h -------------------------------------------------------------------------------- /Examples/C8051F326_7/Header_Files/C8051F326.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/Header_Files/C8051F326.INC -------------------------------------------------------------------------------- /Examples/C8051F326_7/Header_Files/c8051F326.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/Header_Files/c8051F326.h -------------------------------------------------------------------------------- /Examples/C8051F326_7/UART/F326_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/UART/F326_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F326_7/USB_Bulk/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/USB_Bulk/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F326_7/USB_Bulk/SiBulk.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/USB_Bulk/SiBulk.sys -------------------------------------------------------------------------------- /Examples/C8051F326_7/USB_Bulk/SilabsBulk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/USB_Bulk/SilabsBulk.inf -------------------------------------------------------------------------------- /Examples/C8051F326_7/USB_Interrupt/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/USB_Interrupt/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F326_7/USB_Interrupt/SiInt.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/USB_Interrupt/SiInt.sys -------------------------------------------------------------------------------- /Examples/C8051F326_7/USB_Interrupt/USBTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F326_7/USB_Interrupt/USBTest.exe -------------------------------------------------------------------------------- /Examples/C8051F330_5/Blinky/C8051F330.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Blinky/C8051F330.INC -------------------------------------------------------------------------------- /Examples/C8051F330_5/Blinky/C8051F330_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Blinky/C8051F330_defs.h -------------------------------------------------------------------------------- /Examples/C8051F330_5/Blinky/F330_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Blinky/F330_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F330_5/Blinky/F330_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Blinky/F330_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F330_5/Blinky/F330_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Blinky/F330_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F330_5/Blinky/F330_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Blinky/F330_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F330_5/Blinky/c8051F330.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Blinky/c8051F330.h -------------------------------------------------------------------------------- /Examples/C8051F330_5/DAC/F33x_IDA0_SineWave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/DAC/F33x_IDA0_SineWave.c -------------------------------------------------------------------------------- /Examples/C8051F330_5/Header_Files/C8051F330.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Header_Files/C8051F330.INC -------------------------------------------------------------------------------- /Examples/C8051F330_5/Header_Files/c8051F330.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Header_Files/c8051F330.h -------------------------------------------------------------------------------- /Examples/C8051F330_5/SMBus/F33x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/SMBus/F33x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F330_5/SMBus/F33x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/SMBus/F33x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F330_5/SMBus/F33x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/SMBus/F33x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F330_5/SPI/F33x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/SPI/F33x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F330_5/SPI/F33x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/SPI/F33x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F330_5/UART/F33x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/UART/F33x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F330_5/Watchdog/F33x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F330_5/Watchdog/F33x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F336_9/Blinky/C8051F336.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/Blinky/C8051F336.INC -------------------------------------------------------------------------------- /Examples/C8051F336_9/Blinky/C8051F336_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/Blinky/C8051F336_defs.h -------------------------------------------------------------------------------- /Examples/C8051F336_9/Blinky/F336_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/Blinky/F336_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F336_9/Blinky/F336_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/Blinky/F336_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F336_9/Blinky/F336_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/Blinky/F336_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F336_9/Blinky/F336_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/Blinky/F336_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F336_9/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F336_9/DAC/F336_IDA0_SineWave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/DAC/F336_IDA0_SineWave.c -------------------------------------------------------------------------------- /Examples/C8051F336_9/Header_Files/C8051F336.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/Header_Files/C8051F336.INC -------------------------------------------------------------------------------- /Examples/C8051F336_9/SMBus/F336_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/SMBus/F336_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F336_9/SMBus/F336_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/SMBus/F336_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F336_9/SMBus/F336_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/SMBus/F336_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F336_9/SPI/F336_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/SPI/F336_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F336_9/SPI/F336_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/SPI/F336_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F336_9/UART/F336_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/UART/F336_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F336_9/Watchdog/F336_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F336_9/Watchdog/F336_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F34x/Blinky/C8051F340.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Blinky/C8051F340.INC -------------------------------------------------------------------------------- /Examples/C8051F34x/Blinky/C8051F340_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Blinky/C8051F340_defs.h -------------------------------------------------------------------------------- /Examples/C8051F34x/Blinky/F34x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Blinky/F34x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F34x/Blinky/F34x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Blinky/F34x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F34x/Blinky/F34x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Blinky/F34x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F34x/Blinky/F34x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Blinky/F34x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F34x/Blinky/c8051F340.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Blinky/c8051F340.h -------------------------------------------------------------------------------- /Examples/C8051F34x/Header_Files/C8051F340.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Header_Files/C8051F340.INC -------------------------------------------------------------------------------- /Examples/C8051F34x/Header_Files/c8051F340.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Header_Files/c8051F340.h -------------------------------------------------------------------------------- /Examples/C8051F34x/Oscillators/F34x_LFO_Idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Oscillators/F34x_LFO_Idle.c -------------------------------------------------------------------------------- /Examples/C8051F34x/SMBus/F34x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/SMBus/F34x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F34x/SMBus/F34x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/SMBus/F34x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F34x/SMBus/F34x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/SMBus/F34x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F34x/SPI/F34x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/SPI/F34x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F34x/SPI/F34x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/SPI/F34x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F34x/UART/F34x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/UART/F34x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F34x/UART/F34x_UART_MultiUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/UART/F34x_UART_MultiUART.c -------------------------------------------------------------------------------- /Examples/C8051F34x/UART/F34x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/UART/F34x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F34x/USB_Bulk/Firmware/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/USB_Bulk/Firmware/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F34x/USB_Bulk/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/USB_Bulk/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F34x/USB_Bulk/SiBulk.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/USB_Bulk/SiBulk.sys -------------------------------------------------------------------------------- /Examples/C8051F34x/USB_Bulk/SilabsBulk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/USB_Bulk/SilabsBulk.inf -------------------------------------------------------------------------------- /Examples/C8051F34x/USB_Interrupt/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/USB_Interrupt/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F34x/USB_Interrupt/SiInt.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/USB_Interrupt/SiInt.sys -------------------------------------------------------------------------------- /Examples/C8051F34x/USB_Interrupt/SilabsInt.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/USB_Interrupt/SilabsInt.inf -------------------------------------------------------------------------------- /Examples/C8051F34x/USB_Interrupt/USBTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/USB_Interrupt/USBTest.exe -------------------------------------------------------------------------------- /Examples/C8051F34x/Watchdog/F34x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F34x/Watchdog/F34x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F35x/ADC/F35x_ADC0_Buffered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/ADC/F35x_ADC0_Buffered.c -------------------------------------------------------------------------------- /Examples/C8051F35x/Blinky/C8051F350.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Blinky/C8051F350.INC -------------------------------------------------------------------------------- /Examples/C8051F35x/Blinky/F35x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Blinky/F35x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F35x/Blinky/F35x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Blinky/F35x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F35x/Blinky/F35x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Blinky/F35x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F35x/Blinky/F35x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Blinky/F35x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F35x/Blinky/c8051F350.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Blinky/c8051F350.h -------------------------------------------------------------------------------- /Examples/C8051F35x/Blinky/c8051F350_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Blinky/c8051F350_defs.h -------------------------------------------------------------------------------- /Examples/C8051F35x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F35x/DAC/F35x_DACs_SineCosine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/DAC/F35x_DACs_SineCosine.c -------------------------------------------------------------------------------- /Examples/C8051F35x/Header_Files/C8051F350.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Header_Files/C8051F350.INC -------------------------------------------------------------------------------- /Examples/C8051F35x/Header_Files/c8051F350.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Header_Files/c8051F350.h -------------------------------------------------------------------------------- /Examples/C8051F35x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F35x/SMBus/F35x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/SMBus/F35x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F35x/SMBus/F35x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/SMBus/F35x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F35x/SMBus/F35x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/SMBus/F35x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F35x/SPI/F35x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/SPI/F35x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F35x/SPI/F35x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/SPI/F35x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F35x/UART/F35x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/UART/F35x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F35x/UART/F35x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/UART/F35x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F35x/Watchdog/F35x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F35x/Watchdog/F35x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F36x/Blinky/C8051F360.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Blinky/C8051F360.h -------------------------------------------------------------------------------- /Examples/C8051F36x/Blinky/C8051F360_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Blinky/C8051F360_defs.h -------------------------------------------------------------------------------- /Examples/C8051F36x/Blinky/F36x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Blinky/F36x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F36x/Blinky/F36x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Blinky/F36x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F36x/Blinky/F36x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Blinky/F36x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F36x/Blinky/F36x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Blinky/F36x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F36x/Blinky/c8051F360.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Blinky/c8051F360.INC -------------------------------------------------------------------------------- /Examples/C8051F36x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F36x/DAC/F36x_IDA0_SineWave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/DAC/F36x_IDA0_SineWave.c -------------------------------------------------------------------------------- /Examples/C8051F36x/EMIF/F36x_EMIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/EMIF/F36x_EMIF.c -------------------------------------------------------------------------------- /Examples/C8051F36x/Header_Files/C8051F360.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Header_Files/C8051F360.h -------------------------------------------------------------------------------- /Examples/C8051F36x/Header_Files/c8051F360.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Header_Files/c8051F360.INC -------------------------------------------------------------------------------- /Examples/C8051F36x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F36x/Oscillators/F36x_LFO_Idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Oscillators/F36x_LFO_Idle.c -------------------------------------------------------------------------------- /Examples/C8051F36x/PortIO/F36x_PortMatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/PortIO/F36x_PortMatch.c -------------------------------------------------------------------------------- /Examples/C8051F36x/SMBus/F36x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/SMBus/F36x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F36x/SMBus/F36x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/SMBus/F36x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F36x/SMBus/F36x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/SMBus/F36x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F36x/SPI/F36x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/SPI/F36x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F36x/SPI/F36x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/SPI/F36x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F36x/UART/F36x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/UART/F36x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F36x/UART/F36x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/UART/F36x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F36x/Watchdog/F36x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F36x/Watchdog/F36x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F38x/Blinky/C8051F380.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Blinky/C8051F380.INC -------------------------------------------------------------------------------- /Examples/C8051F38x/Blinky/C8051F380_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Blinky/C8051F380_defs.h -------------------------------------------------------------------------------- /Examples/C8051F38x/Blinky/F38x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Blinky/F38x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F38x/Blinky/F38x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Blinky/F38x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F38x/Blinky/F38x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Blinky/F38x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F38x/Blinky/F38x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Blinky/F38x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F38x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F38x/Header_Files/C8051F380.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Header_Files/C8051F380.INC -------------------------------------------------------------------------------- /Examples/C8051F38x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F38x/Oscillators/F38x_LFO_Idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Oscillators/F38x_LFO_Idle.c -------------------------------------------------------------------------------- /Examples/C8051F38x/SMBus/F38x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/SMBus/F38x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F38x/SMBus/F38x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/SMBus/F38x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F38x/SMBus/F38x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/SMBus/F38x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F38x/SPI/F38x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/SPI/F38x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F38x/SPI/F38x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/SPI/F38x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F38x/UART/F38x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/UART/F38x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F38x/UART/F38x_UART_MultiUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/UART/F38x_UART_MultiUART.c -------------------------------------------------------------------------------- /Examples/C8051F38x/UART/F38x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/UART/F38x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F38x/USB_Bulk/Firmware/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/USB_Bulk/Firmware/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F38x/USB_Bulk/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/USB_Bulk/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F38x/USB_Bulk/SiBulk.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/USB_Bulk/SiBulk.sys -------------------------------------------------------------------------------- /Examples/C8051F38x/USB_Bulk/SilabsBulk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/USB_Bulk/SilabsBulk.inf -------------------------------------------------------------------------------- /Examples/C8051F38x/USB_Interrupt/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/USB_Interrupt/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051F38x/USB_Interrupt/SiInt.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/USB_Interrupt/SiInt.sys -------------------------------------------------------------------------------- /Examples/C8051F38x/USB_Interrupt/SilabsInt.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/USB_Interrupt/SilabsInt.inf -------------------------------------------------------------------------------- /Examples/C8051F38x/USB_Interrupt/USBTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/USB_Interrupt/USBTest.exe -------------------------------------------------------------------------------- /Examples/C8051F38x/Watchdog/F38x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F38x/Watchdog/F38x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F41x/Blinky/C8051F410.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Blinky/C8051F410.INC -------------------------------------------------------------------------------- /Examples/C8051F41x/Blinky/C8051F410_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Blinky/C8051F410_defs.h -------------------------------------------------------------------------------- /Examples/C8051F41x/Blinky/F41x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Blinky/F41x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F41x/Blinky/F41x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Blinky/F41x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F41x/Blinky/F41x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Blinky/F41x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051F41x/Blinky/F41x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Blinky/F41x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F41x/Blinky/c8051F410.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Blinky/c8051F410.h -------------------------------------------------------------------------------- /Examples/C8051F41x/CRC/F41x_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/CRC/F41x_CRC.c -------------------------------------------------------------------------------- /Examples/C8051F41x/DAC/F41x_DACs_SineCosine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/DAC/F41x_DACs_SineCosine.c -------------------------------------------------------------------------------- /Examples/C8051F41x/Header_Files/C8051F410.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Header_Files/C8051F410.INC -------------------------------------------------------------------------------- /Examples/C8051F41x/Header_Files/c8051F410.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Header_Files/c8051F410.h -------------------------------------------------------------------------------- /Examples/C8051F41x/PortIO/F41x_PortMatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/PortIO/F41x_PortMatch.c -------------------------------------------------------------------------------- /Examples/C8051F41x/SMBus/F41x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/SMBus/F41x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F41x/SMBus/F41x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/SMBus/F41x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F41x/SMBus/F41x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/SMBus/F41x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F41x/SPI/F41x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/SPI/F41x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F41x/SPI/F41x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/SPI/F41x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F41x/UART/F41x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/UART/F41x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F41x/UART/F41x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/UART/F41x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F41x/Watchdog/F41x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F41x/Watchdog/F41x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Blinky/C8051F500.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Blinky/C8051F500.INC -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Blinky/C8051F500_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Blinky/C8051F500_defs.h -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Blinky/F50x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Blinky/F50x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Blinky/F50x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Blinky/F50x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Blinky/F50x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Blinky/F50x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/CAN/F50x_CAN0_LED1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/CAN/F50x_CAN0_LED1.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/CAN/F50x_CAN0_LED2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/CAN/F50x_CAN0_LED2.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/CAN/F50x_CAN0_Receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/CAN/F50x_CAN0_Receive.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/CAN/F50x_CAN0_Transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/CAN/F50x_CAN0_Transmit.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/EMIF/F50x_EMIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/EMIF/F50x_EMIF.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Flash/F500_FlashUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Flash/F500_FlashUtils.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Flash/F500_FlashUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Flash/F500_FlashUtils.h -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Flash/F500_Flash_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Flash/F500_Flash_Test.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/LIN/F50x_LIN_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/LIN/F50x_LIN_Master.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/LIN/F50x_LIN_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/LIN/F50x_LIN_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/SMBus/F500_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/SMBus/F500_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/SPI/F500_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/SPI/F500_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/SPI/F500_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/SPI/F500_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/UART/F500_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/UART/F500_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F50x_51x/Watchdog/F500_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F50x_51x/Watchdog/F500_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F52xA_53xA/Blinky/C8051F520A.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F52xA_53xA/Blinky/C8051F520A.INC -------------------------------------------------------------------------------- /Examples/C8051F52xA_53xA/Blinky/F53xA_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F52xA_53xA/Blinky/F53xA_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F52xA_53xA/Blinky/c8051F520.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F52xA_53xA/Blinky/c8051F520.h -------------------------------------------------------------------------------- /Examples/C8051F52xA_53xA/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F52xA_53xA/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F52xA_53xA/LIN/F53xA_LIN_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F52xA_53xA/LIN/F53xA_LIN_Master.c -------------------------------------------------------------------------------- /Examples/C8051F52xA_53xA/LIN/F53xA_LIN_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F52xA_53xA/LIN/F53xA_LIN_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F52xA_53xA/SPI/F53xA_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F52xA_53xA/SPI/F53xA_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F54x/Blinky/C8051F540.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Blinky/C8051F540.INC -------------------------------------------------------------------------------- /Examples/C8051F54x/Blinky/C8051F540_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Blinky/C8051F540_defs.h -------------------------------------------------------------------------------- /Examples/C8051F54x/Blinky/F54x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Blinky/F54x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F54x/Blinky/F54x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Blinky/F54x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F54x/Blinky/F54x_Blinky_ASM.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Blinky/F54x_Blinky_ASM.wsp -------------------------------------------------------------------------------- /Examples/C8051F54x/Blinky/F54x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Blinky/F54x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F54x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F54x/Flash/F540_FlashPrimitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Flash/F540_FlashPrimitives.c -------------------------------------------------------------------------------- /Examples/C8051F54x/Flash/F540_FlashPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Flash/F540_FlashPrimitives.h -------------------------------------------------------------------------------- /Examples/C8051F54x/Flash/F540_FlashUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Flash/F540_FlashUtils.c -------------------------------------------------------------------------------- /Examples/C8051F54x/Flash/F540_FlashUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Flash/F540_FlashUtils.h -------------------------------------------------------------------------------- /Examples/C8051F54x/Flash/F540_Flash_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Flash/F540_Flash_Test.c -------------------------------------------------------------------------------- /Examples/C8051F54x/Header_Files/C8051F540.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Header_Files/C8051F540.INC -------------------------------------------------------------------------------- /Examples/C8051F54x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F54x/LIN/F54x_LIN_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/LIN/F54x_LIN_Master.c -------------------------------------------------------------------------------- /Examples/C8051F54x/LIN/F54x_LIN_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/LIN/F54x_LIN_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F54x/SMBus/F540_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/SMBus/F540_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F54x/SMBus/F540_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/SMBus/F540_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F54x/SMBus/F540_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/SMBus/F540_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F54x/SPI/F540_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/SPI/F540_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F54x/SPI/F540_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/SPI/F540_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F54x/UART/F540_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/UART/F540_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F54x/UART/F540_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/UART/F540_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F54x/Watchdog/F540_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F54x/Watchdog/F540_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F55x_56x_57x/Blinky/C8051F560.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F55x_56x_57x/Blinky/C8051F560.INC -------------------------------------------------------------------------------- /Examples/C8051F55x_56x_57x/Blinky/F560_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F55x_56x_57x/Blinky/F560_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F55x_56x_57x/CAN/F56x_CAN0_LED1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F55x_56x_57x/CAN/F56x_CAN0_LED1.c -------------------------------------------------------------------------------- /Examples/C8051F55x_56x_57x/CAN/F56x_CAN0_LED2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F55x_56x_57x/CAN/F56x_CAN0_LED2.c -------------------------------------------------------------------------------- /Examples/C8051F55x_56x_57x/EMIF/F560_EMIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F55x_56x_57x/EMIF/F560_EMIF.c -------------------------------------------------------------------------------- /Examples/C8051F55x_56x_57x/LIN/F560_LIN_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F55x_56x_57x/LIN/F560_LIN_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Blinky/C8051F580.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Blinky/C8051F580.INC -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Blinky/C8051F580_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Blinky/C8051F580_defs.h -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Blinky/F580_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Blinky/F580_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Blinky/F580_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Blinky/F580_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Blinky/F58x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Blinky/F58x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/CAN/F580_CAN0_Receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/CAN/F580_CAN0_Receive.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/CAN/F580_CAN0_Transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/CAN/F580_CAN0_Transmit.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/EMIF/F580_EMIF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/EMIF/F580_EMIF.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Flash/F580_FlashUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Flash/F580_FlashUtils.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Flash/F580_FlashUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Flash/F580_FlashUtils.h -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Flash/F580_Flash_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Flash/F580_Flash_Test.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/LIN/F580_LIN_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/LIN/F580_LIN_Master.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/LIN/F580_LIN_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/LIN/F580_LIN_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/SMBus/F580_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/SMBus/F580_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/SPI/F580_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/SPI/F580_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/SPI/F580_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/SPI/F580_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F58x_59x/Watchdog/F580_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F58x_59x/Watchdog/F580_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Blinky/C8051F700.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Blinky/C8051F700.INC -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Blinky/C8051F700_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Blinky/C8051F700_defs.h -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Blinky/F70x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Blinky/F70x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Blinky/F70x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Blinky/F70x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/CRC/F70x_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/CRC/F70x_CRC.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/CS0/F70x_CS0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/CS0/F70x_CS0.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/EEPROM/F70x_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/EEPROM/F70x_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/EMIF/F70x_EMIF_AB1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/EMIF/F70x_EMIF_AB1.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Flash/F700_FlashUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Flash/F700_FlashUtils.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Flash/F700_FlashUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Flash/F700_FlashUtils.h -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Flash/F700_Flash_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Flash/F700_Flash_Test.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Flash/F70x_FlashTest.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Flash/F70x_FlashTest.wsp -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/SMBus/F70x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/SMBus/F70x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/SPI/F70x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/SPI/F70x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/SPI/F70x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/SPI/F70x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/UART/F70x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/UART/F70x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F70x_71x/Watchdog/F70x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F70x_71x/Watchdog/F70x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/Blinky/C8051F800.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/Blinky/C8051F800.INC -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/Blinky/C8051F800_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/Blinky/C8051F800_defs.h -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/Blinky/F80x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/Blinky/F80x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/Blinky/F80x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/Blinky/F80x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/CRC/F80x_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/CRC/F80x_CRC.c -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/CS0/F80x_CS0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/CS0/F80x_CS0.c -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/SMBus/F80x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/SMBus/F80x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/SPI/F80x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/SPI/F80x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/SPI/F80x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/SPI/F80x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/UART/F80x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/UART/F80x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F80x_83x/Watchdog/F80x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F80x_83x/Watchdog/F80x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/Blinky/C8051F912.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/Blinky/C8051F912.INC -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/Blinky/C8051F912_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/Blinky/C8051F912_defs.h -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/Blinky/F91x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/Blinky/F91x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/CRC/F91x_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/CRC/F91x_CRC.c -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/F9xx_Imeasure/Imeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/F9xx_Imeasure/Imeasure.h -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/IREF/F91x_IREF0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/IREF/F91x_IREF0.c -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/SMBus/F91x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/SMBus/F91x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/SPI/F91x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/SPI/F91x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/SPI/F91x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/SPI/F91x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/UART/F91x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/UART/F91x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/UART/SDCC Includes/Read Me.txt: -------------------------------------------------------------------------------- 1 | Copy these to SDCC include folder -------------------------------------------------------------------------------- /Examples/C8051F91x_90x/Watchdog/F91x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F91x_90x/Watchdog/F91x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/Blinky/C8051F930.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/Blinky/C8051F930.INC -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/Blinky/C8051F930_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/Blinky/C8051F930_defs.h -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/Blinky/F93x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/Blinky/F93x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/CRC/F93x_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/CRC/F93x_CRC.c -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/F9xx_Imeasure/Imeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/F9xx_Imeasure/Imeasure.h -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/IREF/F93x_IREF0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/IREF/F93x_IREF0.c -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/SMBus/F93x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/SMBus/F93x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/SPI/F93x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/SPI/F93x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/SPI/F93x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/SPI/F93x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/UART/F93x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/UART/F93x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/UART/SDCC Includes/Read Me.txt: -------------------------------------------------------------------------------- 1 | Copy these to SDCC include folder -------------------------------------------------------------------------------- /Examples/C8051F93x_92x/Watchdog/F93x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F93x_92x/Watchdog/F93x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F96x/ADC/F96x_ADC0_BurstMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/ADC/F96x_ADC0_BurstMode.c -------------------------------------------------------------------------------- /Examples/C8051F96x/Blinky/Blinky_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Blinky/Blinky_Keil.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/Blinky/Blinky_Raisonance.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Blinky/Blinky_Raisonance.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/Blinky/Blinky_SDCC.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Blinky/Blinky_SDCC.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/Blinky/C8051F960.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Blinky/C8051F960.INC -------------------------------------------------------------------------------- /Examples/C8051F96x/Blinky/C8051F960_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Blinky/C8051F960_defs.h -------------------------------------------------------------------------------- /Examples/C8051F96x/Blinky/F96x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Blinky/F96x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F96x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F96x/CRC0/F96x_CRC0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/CRC0/F96x_CRC0.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/AES_BlockCipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/AES_BlockCipher.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/AES_BlockCipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/AES_BlockCipher.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/AES_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/AES_Test.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/AES_Test_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/AES_Test_Keil.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/AES_Test_Rais.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/AES_Test_Rais.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/AES_Test_SDCC.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/AES_Test_SDCC.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/AES_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/AES_defs.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/CBC_EncryptDecrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/CBC_EncryptDecrypt.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/CBC_EncryptDecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/CBC_EncryptDecrypt.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/CTR_EncryptDecrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/CTR_EncryptDecrypt.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/CTR_EncryptDecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/CTR_EncryptDecrypt.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/DMA_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/DMA_defs.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/TestVectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/TestVectors.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/AES/TestVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/AES/TestVectors.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/CRC1/CRC1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/CRC1/CRC1.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/CRC1/CRC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/CRC1/CRC1.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/CRC1/CRC1_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/CRC1/CRC1_Test.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/CRC1/CRC1_TestVectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/CRC1/CRC1_TestVectors.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/CRC1/CRC1_TestVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/CRC1/CRC1_TestVectors.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/CRC1/CRC1_Test_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/CRC1/CRC1_Test_Keil.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/CRC1/CRC1_Test_Rais.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/CRC1/CRC1_Test_Rais.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/CRC1/CRC1_Test_SDCC.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/CRC1/CRC1_Test_SDCC.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/CRC1/DMA_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/CRC1/DMA_defs.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/ENC/DMA_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/ENC/DMA_defs.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/ENC/ENC_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/ENC/ENC_Test.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/ENC/ENC_Test_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/ENC/ENC_Test_Keil.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/ENC/ENC_Test_Rais.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/ENC/ENC_Test_Rais.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/ENC/ENC_Test_SDCC.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/ENC/ENC_Test_SDCC.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/ENC/EncoderDecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/ENC/EncoderDecoder.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/ENC/EncoderDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/ENC/EncoderDecoder.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/ENC/TestVectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/ENC/TestVectors.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/ENC/TestVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/ENC/TestVectors.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/SPI1/Master/DMA_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/SPI1/Master/DMA_defs.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/SPI1/Slave/DMA_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/SPI1/Slave/DMA_defs.h -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/SPI1/Slave/SPI1_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/SPI1/Slave/SPI1_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F96x/DMA/SPI1/Slave/SPI1_Slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/DMA/SPI1/Slave/SPI1_Slave.h -------------------------------------------------------------------------------- /Examples/C8051F96x/Header_Files/C8051F960.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Header_Files/C8051F960.INC -------------------------------------------------------------------------------- /Examples/C8051F96x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F96x/IREF/F96x_IREF0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/IREF/F96x_IREF0.c -------------------------------------------------------------------------------- /Examples/C8051F96x/IREF/F96x_IREF0_PWM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/IREF/F96x_IREF0_PWM.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/LowPowerSleep_VIM878.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/LowPowerSleep_VIM878.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/PowerManagementF960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/PowerManagementF960.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/PowerManagementF960.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/PowerManagementF960.h -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/SmaRTClockF960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/SmaRTClockF960.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/SmaRTClockF960.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/SmaRTClockF960.h -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdConfig.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdConfig.h -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdPrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdPrintf.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdPrintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdPrintf.h -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdPutChar_VI401.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdPutChar_VI401.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdPutChar_VI401.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdPutChar_VI401.h -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdPutChar_VIM878.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdPutChar_VIM878.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdPutChar_VIM878.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdPutChar_VIM878.h -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdPutString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdPutString.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdPutString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdPutString.h -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdTest_VIM878.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdTest_VIM878.c -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdTest_VIM878_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdTest_VIM878_Keil.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdTest_VIM878_Rais.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdTest_VIM878_Rais.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/LCD/lcdTest_VIM878_SDCC.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/LCD/lcdTest_VIM878_SDCC.wsp -------------------------------------------------------------------------------- /Examples/C8051F96x/Ports/F96x_Ports_SwitchLED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Ports/F96x_Ports_SwitchLED.c -------------------------------------------------------------------------------- /Examples/C8051F96x/PulseCounter/PulseCounter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/PulseCounter/PulseCounter.c -------------------------------------------------------------------------------- /Examples/C8051F96x/PulseCounter/PulseCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/PulseCounter/PulseCounter.h -------------------------------------------------------------------------------- /Examples/C8051F96x/SMBus/F96x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/SMBus/F96x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051F96x/SMBus/F96x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/SMBus/F96x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051F96x/SMBus/F96x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/SMBus/F96x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F96x/SPI0/F96x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/SPI0/F96x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F96x/SPI0/F96x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/SPI0/F96x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F96x/SmaRTClock/SmaRTClockF960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/SmaRTClock/SmaRTClockF960.c -------------------------------------------------------------------------------- /Examples/C8051F96x/SmaRTClock/SmaRTClockF960.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/SmaRTClock/SmaRTClockF960.h -------------------------------------------------------------------------------- /Examples/C8051F96x/SmaRTClock/Test_SmaRTClock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/SmaRTClock/Test_SmaRTClock.c -------------------------------------------------------------------------------- /Examples/C8051F96x/UART/F96x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/UART/F96x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051F96x/UART/F96x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/UART/F96x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F96x/UART/F96x_WakeOnUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/UART/F96x_WakeOnUART.c -------------------------------------------------------------------------------- /Examples/C8051F96x/Watchdog/F96x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F96x/Watchdog/F96x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/Blinky/C8051F990_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/Blinky/C8051F990_defs.h -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/Blinky/F99x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/Blinky/F99x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/CRC/F99x_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/CRC/F99x_CRC.c -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/CapTouchSense/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/CapTouchSense/readme.txt -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/F9xx_Imeasure/Imeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/F9xx_Imeasure/Imeasure.h -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/IREF/F99x_IREF0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/IREF/F99x_IREF0.c -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/IREF/F99x_IREF0_PWM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/IREF/F99x_IREF0_PWM.c -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/SMBus/F99x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/SMBus/F99x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/SPI/F99x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/SPI/F99x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/SPI/F99x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/SPI/F99x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/UART/F99x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/UART/F99x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/UART/SDCC Includes/Read Me.txt: -------------------------------------------------------------------------------- 1 | Copy these to SDCC include folder -------------------------------------------------------------------------------- /Examples/C8051F99x_98x/Watchdog/F99x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051F99x_98x/Watchdog/F99x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051T60x/Blinky/C8051T600.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Blinky/C8051T600.INC -------------------------------------------------------------------------------- /Examples/C8051T60x/Blinky/C8051T600_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Blinky/C8051T600_defs.h -------------------------------------------------------------------------------- /Examples/C8051T60x/Blinky/T60x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Blinky/T60x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051T60x/Blinky/T60x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Blinky/T60x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051T60x/Blinky/T60x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Blinky/T60x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051T60x/Blinky/T60x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Blinky/T60x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051T60x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051T60x/Header_Files/C8051T600.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Header_Files/C8051T600.INC -------------------------------------------------------------------------------- /Examples/C8051T60x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051T60x/SMBus/T60x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/SMBus/T60x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051T60x/SMBus/T60x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/SMBus/T60x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051T60x/SMBus/T60x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/SMBus/T60x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051T60x/UART/T60x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/UART/T60x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051T60x/UART/T60x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/UART/T60x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051T60x/Watchdog/T60x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T60x/Watchdog/T60x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051T61x/Blinky/C8051T610.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Blinky/C8051T610.INC -------------------------------------------------------------------------------- /Examples/C8051T61x/Blinky/C8051T610_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Blinky/C8051T610_defs.h -------------------------------------------------------------------------------- /Examples/C8051T61x/Blinky/T61x_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Blinky/T61x_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051T61x/Blinky/T61x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Blinky/T61x_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051T61x/Blinky/T61x_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Blinky/T61x_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051T61x/Blinky/T61x_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Blinky/T61x_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051T61x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051T61x/Header_Files/C8051T610.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Header_Files/C8051T610.INC -------------------------------------------------------------------------------- /Examples/C8051T61x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051T61x/SMBus/T61x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/SMBus/T61x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051T61x/SMBus/T61x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/SMBus/T61x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051T61x/SMBus/T61x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/SMBus/T61x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051T61x/UART/T61x_UART_INT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/UART/T61x_UART_INT.c -------------------------------------------------------------------------------- /Examples/C8051T61x/UART/T61x_UART_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/UART/T61x_UART_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051T61x/Watchdog/T61x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T61x/Watchdog/T61x_Watchdog.c -------------------------------------------------------------------------------- /Examples/C8051T620_1_T320_3/EPROM/T620_EPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T620_1_T320_3/EPROM/T620_EPROM.c -------------------------------------------------------------------------------- /Examples/C8051T620_1_T320_3/LockByte/LockByte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T620_1_T320_3/LockByte/LockByte.c -------------------------------------------------------------------------------- /Examples/C8051T620_1_T320_3/USB_Bulk/Firmware/test_receive.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/C8051T620_1_T320_3/USB_Bulk/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T620_1_T320_3/USB_Bulk/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051T620_1_T320_3/USB_Bulk/SiBulk.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T620_1_T320_3/USB_Bulk/SiBulk.sys -------------------------------------------------------------------------------- /Examples/C8051T622_3_T326_7/EPROM/T622_EPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T622_3_T326_7/EPROM/T622_EPROM.c -------------------------------------------------------------------------------- /Examples/C8051T622_3_T326_7/LockByte/LockByte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T622_3_T326_7/LockByte/LockByte.c -------------------------------------------------------------------------------- /Examples/C8051T622_3_T326_7/USB_Bulk/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T622_3_T326_7/USB_Bulk/ReadMe.txt -------------------------------------------------------------------------------- /Examples/C8051T622_3_T326_7/USB_Bulk/SiBulk.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T622_3_T326_7/USB_Bulk/SiBulk.sys -------------------------------------------------------------------------------- /Examples/C8051T63x/Blinky/C8051T630.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Blinky/C8051T630.INC -------------------------------------------------------------------------------- /Examples/C8051T63x/Blinky/C8051T630_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Blinky/C8051T630_defs.h -------------------------------------------------------------------------------- /Examples/C8051T63x/Blinky/T630_Blinky.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Blinky/T630_Blinky.asm -------------------------------------------------------------------------------- /Examples/C8051T63x/Blinky/T630_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Blinky/T630_Blinky.c -------------------------------------------------------------------------------- /Examples/C8051T63x/Blinky/T630_Blinky_Asm.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Blinky/T630_Blinky_Asm.wsp -------------------------------------------------------------------------------- /Examples/C8051T63x/Blinky/T630_Blinky_C.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Blinky/T630_Blinky_C.wsp -------------------------------------------------------------------------------- /Examples/C8051T63x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051T63x/DAC/T630_IDA0_SineWave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/DAC/T630_IDA0_SineWave.c -------------------------------------------------------------------------------- /Examples/C8051T63x/Header_Files/C8051T630.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Header_Files/C8051T630.INC -------------------------------------------------------------------------------- /Examples/C8051T63x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/C8051T63x/Oscillators/T63x_LFO_Idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Oscillators/T63x_LFO_Idle.c -------------------------------------------------------------------------------- /Examples/C8051T63x/SMBus/T630_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/SMBus/T630_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/C8051T63x/SMBus/T630_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/SMBus/T630_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/C8051T63x/SMBus/T630_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/SMBus/T630_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/C8051T63x/SPI/T630_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/SPI/T630_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/C8051T63x/SPI/T630_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/SPI/T630_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/C8051T63x/UART/T630_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/UART/T630_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/C8051T63x/UART/T630_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/UART/T630_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/C8051T63x/Watchdog/T630_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/C8051T63x/Watchdog/T630_Watchdog.c -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_NoScreen/CP250x_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_NoScreen/CP250x_API.h -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_NoScreen/CP250x_Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_NoScreen/CP250x_Main.c -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_NoScreen/STARTUP.A51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_NoScreen/STARTUP.A51 -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_SMBus/CP250x_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_SMBus/CP250x_API.h -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_SMBus/CP250x_Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_SMBus/CP250x_Main.c -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_SMBus/STARTUP.A51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_SMBus/STARTUP.A51 -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_SMBus/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_SMBus/compiler_defs.h -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_SPI/CP250x_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_SPI/CP250x_API.h -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_SPI/CP250x_Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_SPI/CP250x_Main.c -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_SPI/STARTUP.A51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_SPI/STARTUP.A51 -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_SPI/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_SPI/compiler_defs.h -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_UART/CP250x_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_UART/CP250x_API.h -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_UART/CP250x_Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_UART/CP250x_Main.c -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_UART/STARTUP.A51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_UART/STARTUP.A51 -------------------------------------------------------------------------------- /Examples/CP250x/CP2501_UART/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/CP250x/CP2501_UART/compiler_defs.h -------------------------------------------------------------------------------- /Examples/Si100x/ADC/Si100x_ADC0_BurstMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/ADC/Si100x_ADC0_BurstMode.c -------------------------------------------------------------------------------- /Examples/Si100x/ADC/Si100x_ADC0_ExternalInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/ADC/Si100x_ADC0_ExternalInput.c -------------------------------------------------------------------------------- /Examples/Si100x/Blinky/Si1000_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Blinky/Si1000_defs.h -------------------------------------------------------------------------------- /Examples/Si100x/Blinky/Si100x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Blinky/Si100x_Blinky.c -------------------------------------------------------------------------------- /Examples/Si100x/Blinky/Si100x_Blinky_C_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Blinky/Si100x_Blinky_C_Keil.wsp -------------------------------------------------------------------------------- /Examples/Si100x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/Si100x/CRC/Si100x_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/CRC/Si100x_CRC.c -------------------------------------------------------------------------------- /Examples/Si100x/EZRadioPRO/RunTimePHY/mainRx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/EZRadioPRO/RunTimePHY/mainRx.c -------------------------------------------------------------------------------- /Examples/Si100x/EZRadioPRO/RunTimePHY/mainTx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/EZRadioPRO/RunTimePHY/mainTx.c -------------------------------------------------------------------------------- /Examples/Si100x/EZRadioPRO/RunTimePHY/rtPhy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/EZRadioPRO/RunTimePHY/rtPhy.c -------------------------------------------------------------------------------- /Examples/Si100x/EZRadioPRO/RunTimePHY/rtPhy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/EZRadioPRO/RunTimePHY/rtPhy.h -------------------------------------------------------------------------------- /Examples/Si100x/Header_Files/Si1000_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Header_Files/Si1000_defs.h -------------------------------------------------------------------------------- /Examples/Si100x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/Si100x/IREF/Si100x_IREF0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/IREF/Si100x_IREF0.c -------------------------------------------------------------------------------- /Examples/Si100x/PCA/Si100x_PCA0_Capture_Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/PCA/Si100x_PCA0_Capture_Input.c -------------------------------------------------------------------------------- /Examples/Si100x/PortIO/Si100x_Ports_SwitchLED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/PortIO/Si100x_Ports_SwitchLED.c -------------------------------------------------------------------------------- /Examples/Si100x/SMBus/Si100x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/SMBus/Si100x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/Si100x/SMBus/Si100x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/SMBus/Si100x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/Si100x/SMBus/Si100x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/SMBus/Si100x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/Si100x/SPI/Si100x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/SPI/Si100x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/Si100x/SPI/Si100x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/SPI/Si100x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/Si100x/Si10xx_Imeasure/Global_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Si10xx_Imeasure/Global_Const.h -------------------------------------------------------------------------------- /Examples/Si100x/Si10xx_Imeasure/Imeasure.a51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Si10xx_Imeasure/Imeasure.a51 -------------------------------------------------------------------------------- /Examples/Si100x/Si10xx_Imeasure/Imeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Si10xx_Imeasure/Imeasure.h -------------------------------------------------------------------------------- /Examples/Si100x/Si10xx_Imeasure/Si10xx_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Si10xx_Imeasure/Si10xx_Config.h -------------------------------------------------------------------------------- /Examples/Si100x/Si10xx_Imeasure/Si10xx_Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Si10xx_Imeasure/Si10xx_Main.c -------------------------------------------------------------------------------- /Examples/Si100x/UART/SDCC Includes/Read Me.txt: -------------------------------------------------------------------------------- 1 | Copy these to SDCC include folder -------------------------------------------------------------------------------- /Examples/Si100x/UART/SDCC Includes/sdcc_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/UART/SDCC Includes/sdcc_stdio.c -------------------------------------------------------------------------------- /Examples/Si100x/UART/SDCC Includes/sdcc_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/UART/SDCC Includes/sdcc_stdio.h -------------------------------------------------------------------------------- /Examples/Si100x/UART/Si100x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/UART/Si100x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/Si100x/UART/Si100x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/UART/Si100x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/Si100x/WakeOnUART/Si100x_WakeOnUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/WakeOnUART/Si100x_WakeOnUART.c -------------------------------------------------------------------------------- /Examples/Si100x/Watchdog/Si100x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si100x/Watchdog/Si100x_Watchdog.c -------------------------------------------------------------------------------- /Examples/Si101x/ADC/Si101x_ADC0_BurstMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/ADC/Si101x_ADC0_BurstMode.c -------------------------------------------------------------------------------- /Examples/Si101x/ADC/Si101x_ADC0_ExternalInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/ADC/Si101x_ADC0_ExternalInput.c -------------------------------------------------------------------------------- /Examples/Si101x/Blinky/Si1010_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Blinky/Si1010_defs.h -------------------------------------------------------------------------------- /Examples/Si101x/Blinky/Si101x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Blinky/Si101x_Blinky.c -------------------------------------------------------------------------------- /Examples/Si101x/Blinky/Si101x_Blinky_C_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Blinky/Si101x_Blinky_C_Keil.wsp -------------------------------------------------------------------------------- /Examples/Si101x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/Si101x/CRC/Si101x_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/CRC/Si101x_CRC.c -------------------------------------------------------------------------------- /Examples/Si101x/EZRadioPRO/RunTimePHY/mainRx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/EZRadioPRO/RunTimePHY/mainRx.c -------------------------------------------------------------------------------- /Examples/Si101x/EZRadioPRO/RunTimePHY/mainTx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/EZRadioPRO/RunTimePHY/mainTx.c -------------------------------------------------------------------------------- /Examples/Si101x/EZRadioPRO/RunTimePHY/rtPhy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/EZRadioPRO/RunTimePHY/rtPhy.c -------------------------------------------------------------------------------- /Examples/Si101x/EZRadioPRO/RunTimePHY/rtPhy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/EZRadioPRO/RunTimePHY/rtPhy.h -------------------------------------------------------------------------------- /Examples/Si101x/Header_Files/Si1010_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Header_Files/Si1010_defs.h -------------------------------------------------------------------------------- /Examples/Si101x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/Si101x/IREF/Si101x_IREF0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/IREF/Si101x_IREF0.c -------------------------------------------------------------------------------- /Examples/Si101x/PCA/Si101x_PCA0_Capture_Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/PCA/Si101x_PCA0_Capture_Input.c -------------------------------------------------------------------------------- /Examples/Si101x/PortIO/Si101x_Ports_SwitchLED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/PortIO/Si101x_Ports_SwitchLED.c -------------------------------------------------------------------------------- /Examples/Si101x/SMBus/Si101x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/SMBus/Si101x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/Si101x/SMBus/Si101x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/SMBus/Si101x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/Si101x/SMBus/Si101x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/SMBus/Si101x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/Si101x/SPI/Si101x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/SPI/Si101x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/Si101x/SPI/Si101x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/SPI/Si101x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/Si101x/Si10xx_Imeasure/Global_Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Si10xx_Imeasure/Global_Const.h -------------------------------------------------------------------------------- /Examples/Si101x/Si10xx_Imeasure/Imeasure.a51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Si10xx_Imeasure/Imeasure.a51 -------------------------------------------------------------------------------- /Examples/Si101x/Si10xx_Imeasure/Imeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Si10xx_Imeasure/Imeasure.h -------------------------------------------------------------------------------- /Examples/Si101x/Si10xx_Imeasure/Si10xx_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Si10xx_Imeasure/Si10xx_Config.h -------------------------------------------------------------------------------- /Examples/Si101x/Si10xx_Imeasure/Si10xx_Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Si10xx_Imeasure/Si10xx_Main.c -------------------------------------------------------------------------------- /Examples/Si101x/UART/SDCC Includes/Read Me.txt: -------------------------------------------------------------------------------- 1 | Copy these to SDCC include folder -------------------------------------------------------------------------------- /Examples/Si101x/UART/SDCC Includes/sdcc_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/UART/SDCC Includes/sdcc_stdio.c -------------------------------------------------------------------------------- /Examples/Si101x/UART/SDCC Includes/sdcc_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/UART/SDCC Includes/sdcc_stdio.h -------------------------------------------------------------------------------- /Examples/Si101x/UART/Si101x_UART0_Interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/UART/Si101x_UART0_Interrupt.c -------------------------------------------------------------------------------- /Examples/Si101x/UART/Si101x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/UART/Si101x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/Si101x/WakeOnUART/Si101x_WakeOnUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/WakeOnUART/Si101x_WakeOnUART.c -------------------------------------------------------------------------------- /Examples/Si101x/Watchdog/Si101x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si101x/Watchdog/Si101x_Watchdog.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/ADC/Si102x_ADC0_BurstMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/ADC/Si102x_ADC0_BurstMode.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/Blinky/Si1020.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/Blinky/Si1020.INC -------------------------------------------------------------------------------- /Examples/Si102x_3x/Blinky/Si1020_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/Blinky/Si1020_defs.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/Blinky/Si102x_Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/Blinky/Si102x_Blinky.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/Blinky/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/Blinky/compiler_defs.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/CRC0/Si102x_CRC0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/CRC0/Si102x_CRC0.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/AES_BlockCipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/AES_BlockCipher.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/AES_BlockCipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/AES_BlockCipher.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/AES_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/AES_Test.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/AES_Test_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/AES_Test_Keil.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/AES_Test_Rais.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/AES_Test_Rais.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/AES_Test_SDCC.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/AES_Test_SDCC.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/AES_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/AES_defs.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/CBC_EncryptDecrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/CBC_EncryptDecrypt.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/CBC_EncryptDecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/CBC_EncryptDecrypt.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/CTR_EncryptDecrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/CTR_EncryptDecrypt.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/CTR_EncryptDecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/CTR_EncryptDecrypt.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/DMA_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/DMA_defs.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/TestVectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/TestVectors.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/AES/TestVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/AES/TestVectors.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/CRC1/CRC1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/CRC1/CRC1.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/CRC1/CRC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/CRC1/CRC1.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/CRC1/CRC1_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/CRC1/CRC1_Test.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/CRC1/CRC1_TestVectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/CRC1/CRC1_TestVectors.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/CRC1/CRC1_TestVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/CRC1/CRC1_TestVectors.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/CRC1/CRC1_Test_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/CRC1/CRC1_Test_Keil.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/CRC1/CRC1_Test_Rais.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/CRC1/CRC1_Test_Rais.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/CRC1/CRC1_Test_SDCC.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/CRC1/CRC1_Test_SDCC.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/CRC1/DMA_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/CRC1/DMA_defs.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/ENC/DMA_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/ENC/DMA_defs.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/ENC/ENC_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/ENC/ENC_Test.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/ENC/ENC_Test_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/ENC/ENC_Test_Keil.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/ENC/ENC_Test_Rais.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/ENC/ENC_Test_Rais.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/ENC/ENC_Test_SDCC.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/ENC/ENC_Test_SDCC.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/ENC/EncoderDecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/ENC/EncoderDecoder.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/ENC/EncoderDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/ENC/EncoderDecoder.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/ENC/TestVectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/ENC/TestVectors.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/DMA/ENC/TestVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/DMA/ENC/TestVectors.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/Header_Files/Si1020.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/Header_Files/Si1020.INC -------------------------------------------------------------------------------- /Examples/Si102x_3x/Header_Files/Si1020_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/Header_Files/Si1020_defs.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/Header_Files/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/Header_Files/compiler_defs.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/IREF/Si102x_IREF0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/IREF/Si102x_IREF0.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/IREF/Si102x_IREF0_PWM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/IREF/Si102x_IREF0_PWM.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/LowPowerSleep_VIM878.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/LowPowerSleep_VIM878.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/PowerManagementSi1020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/PowerManagementSi1020.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/PowerManagementSi1020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/PowerManagementSi1020.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/SmaRTClockSi1020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/SmaRTClockSi1020.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/SmaRTClockSi1020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/SmaRTClockSi1020.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdConfig.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdConfig.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdPrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdPrintf.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdPrintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdPrintf.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdPutChar_VIM878.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdPutChar_VIM878.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdPutChar_VIM878.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdPutChar_VIM878.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdPutString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdPutString.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdPutString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdPutString.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdTest_VIM878.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdTest_VIM878.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdTest_VIM878_Keil.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdTest_VIM878_Keil.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdTest_VIM878_Rais.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdTest_VIM878_Rais.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/LCD/lcdTest_VIM878_SDCC.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/LCD/lcdTest_VIM878_SDCC.wsp -------------------------------------------------------------------------------- /Examples/Si102x_3x/PulseCounter/PulseCounter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/PulseCounter/PulseCounter.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/PulseCounter/PulseCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/PulseCounter/PulseCounter.h -------------------------------------------------------------------------------- /Examples/Si102x_3x/SMBus/Si102x_SMBus_EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/SMBus/Si102x_SMBus_EEPROM.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/SMBus/Si102x_SMBus_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/SMBus/Si102x_SMBus_Master.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/SMBus/Si102x_SMBus_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/SMBus/Si102x_SMBus_Slave.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/SPI0/Si102x_SPI0_Master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/SPI0/Si102x_SPI0_Master.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/SPI0/Si102x_SPI0_Slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/SPI0/Si102x_SPI0_Slave.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/SmaRTClock/Test_SmaRTClock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/SmaRTClock/Test_SmaRTClock.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/UART/SDCC Includes/Read Me.txt: -------------------------------------------------------------------------------- 1 | Copy these to SDCC include folder -------------------------------------------------------------------------------- /Examples/Si102x_3x/UART/Si102x_UART0_STDIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/UART/Si102x_UART0_STDIO.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/UART/Si102x_WakeOnUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/UART/Si102x_WakeOnUART.c -------------------------------------------------------------------------------- /Examples/Si102x_3x/Watchdog/Si102x_Watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/Examples/Si102x_3x/Watchdog/Si102x_Watchdog.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ee230/C8051F/HEAD/README.md --------------------------------------------------------------------------------