From e8baba6de87ff637afe68493957ec114b2aa38d7 Mon Sep 17 00:00:00 2001 From: Gonzalo Ruiz Date: Fri, 12 Apr 2019 17:31:06 +0200 Subject: [PATCH] README: add CC8X boards interfaces to README files Signed-off-by: Gonzalo Ruiz --- apix-adc-example/README.md | 2 ++ apix-gpio-example/README.md | 6 ++++++ apix-i2c-example/README.md | 10 ++++++++++ apix-pwm-example/README.md | 2 ++ apix-spi-example/README.md | 14 ++++++++++++++ 5 files changed, 34 insertions(+) diff --git a/apix-adc-example/README.md b/apix-adc-example/README.md index cad57cd..8a4d22f 100644 --- a/apix-adc-example/README.md +++ b/apix-adc-example/README.md @@ -11,6 +11,8 @@ The ADC lines used in this example are mapped as follows in the Digi boards: - **ConnectCore 6 Plus SBC**: PMIC_ADCIN1 (GPIO connector, J30, Pin 1). - **ConnectCore 6UL SBC Express**: ADC1_IN4 (Expansion connector, J8, Pin 7). - **ConnectCore 6UL SBC Pro**: ADC1_IN2 (GPIO connector, J30, Pin 13). + - **ConnectCore 8X SBC Express**: ADC_IN0 (Expansion connector, J17, Pin 2). + - **ConnectCore 8X SBC Pro**: ADC_IN0 (Expansion connector, J27, Pin D13). Running the application ----------------------- diff --git a/apix-gpio-example/README.md b/apix-gpio-example/README.md index e8f3b8e..7d9d056 100644 --- a/apix-gpio-example/README.md +++ b/apix-gpio-example/README.md @@ -20,6 +20,12 @@ The GPIOs lines used in this example are mapped as follows in the Digi boards: - **ConnectCore 6UL SBC Pro**: - User button: MCA_IO1 (GPIO connector, J30, Pin 7) - User led: USER_LED1 (Connected in the board) + - **ConnectCore 8X SBC Express**: + - User button: GPIO0_20 (Connected in the board) + - User led: GPIO0_19 (Connected in the board) + - **ConnectCore 8X SBC Pro**: + - User button: MCA_IO05 (GPIO connector, J20, Pin A5) + - User led: USER_LED0 (Connected in the board) Running the application ----------------------- diff --git a/apix-i2c-example/README.md b/apix-i2c-example/README.md index 4d05c1e..7a1b5e3 100644 --- a/apix-i2c-example/README.md +++ b/apix-i2c-example/README.md @@ -27,6 +27,16 @@ The I2C connections for this example depend on the running platform: - GND: Pin 6 - I2C-2 SDA: Pin 2 - I2C-2 SCL: Pin 1 + - **ConnectCore 8X SBC Express**: Raspberri Pi Expansion connector of the board (J11). + - VCC: Pin 1 + - GND: Pin 6 + - I2C-2 SDA: Pin 3 + - I2C-2 SCL: Pin 5 + - **ConnectCore 8X SBC Pro**: Expansion connector of the board (J27). + - VCC: Pin D1 + - GND: Pin C1 + - I2C-3 SDA: Pin D8 + - I2C-3 SCL: Pin D7 Running the application ----------------------- diff --git a/apix-pwm-example/README.md b/apix-pwm-example/README.md index 8b508ca..1daf8dc 100644 --- a/apix-pwm-example/README.md +++ b/apix-pwm-example/README.md @@ -12,6 +12,8 @@ The PWM lines used in this example are mapped as follows in the Digi boards: - **ConnectCore 6 Plus SBC**: PWM1 - Pin **10** of the parallel video (LCD) connector (J21). - **ConnectCore 6UL SBC Express**: PWM1 - Pin **27** of the expansion connector (J8). - **ConnectCore 6UL SBC Pro**: PWM4 - Pin **11** of the GPIO connector (J30). + - **ConnectCore 8X SBC Express**: MCA PWM1 channel 0 - Pin **33** of the Raspberry Pi Expansion connector (J11). + - **ConnectCore 8X SBC Pro**: MCA PWM1 channel 0 - Pin **A5** of the Expansion connector (J20). Running the application ----------------------- diff --git a/apix-spi-example/README.md b/apix-spi-example/README.md index 0919cbe..c17228c 100644 --- a/apix-spi-example/README.md +++ b/apix-spi-example/README.md @@ -38,6 +38,20 @@ The SPI connections for this example depends on the running platform: - SPI-1 MISO: Pin 3 - SPI-1 MOSI: Pin 4 - SPI-1 SS0: Pin 5 + - **ConnectCore 8X SBC Express**: Raspberry Pi expansion connector of the board (J11). + - VCC: Pin 1 + - GND: Pin 6 + - SPI-3 CLK: Pin 23 + - SPI-3 MISO: Pin 21 + - SPI-3 MOSI: Pin 19 + - SPI-3 SS0: Pin 24 + - **ConnectCore 8X SBC Pro**: Expansion connector of the board (J27). + - VCC: Pin D1 + - GND: Pin C1 + - SPI-0 CLK: Pin D2 + - SPI-0 MISO: Pin D3 + - SPI-0 MOSI: Pin D4 + - SPI-0 SS0: Pin C2 Running the application -----------------------