am243x: tamagawa: Add developer guide for modifying Tamagawa
Fixes: PINDSW-7004 Signed-off-by: Dhaval Khandla <dhavaljk@ti.com>
This commit is contained in:
parent
bfdc5143c5
commit
db13a2b1a1
@ -40,3 +40,7 @@ SysConfig can be used to configure things mentioned below:
|
|||||||
## Example
|
## Example
|
||||||
|
|
||||||
- \ref EXAMPLE_MOTORCONTROL_TAMAGAWA
|
- \ref EXAMPLE_MOTORCONTROL_TAMAGAWA
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
\ref TAMAGAWA_API_MODULE
|
||||||
|
|||||||
@ -28,23 +28,25 @@ Refer PRU-ICSS chapter of AM64x/AM243x Technical Reference Manual
|
|||||||
|
|
||||||
At start-up, the application running on the ARM Cortex-R5 initializes the module clocks and configures the pinmux. The PRU is initialized and the PRU firmware is loaded on PRU slice of choice for a chosen ICSS instance (tested on PRU1 on ICSSG0). After the PRU1 starts executing, the Tamagawa interface is operational and the application can use it to communicate with an encoder. Use the Tamagawa diagnostic example to learn more about initialization and communication with the Tamagawa interface. This Tamagawa diagnostic example, also provides an easy way to validate the Tamagawa transactions. The diagnostic example provides menu options on the host PC in a serial terminal application, where the user can select the data ID code to be sent. Based on the data ID code, the application updates the Tamagwa interface with the data ID code and trigger transaction. The application then waits until it receives an indication of complete transaction by the firmware through the interface before displaying the result.
|
At start-up, the application running on the ARM Cortex-R5 initializes the module clocks and configures the pinmux. The PRU is initialized and the PRU firmware is loaded on PRU slice of choice for a chosen ICSS instance (tested on PRU1 on ICSSG0). After the PRU1 starts executing, the Tamagawa interface is operational and the application can use it to communicate with an encoder. Use the Tamagawa diagnostic example to learn more about initialization and communication with the Tamagawa interface. This Tamagawa diagnostic example, also provides an easy way to validate the Tamagawa transactions. The diagnostic example provides menu options on the host PC in a serial terminal application, where the user can select the data ID code to be sent. Based on the data ID code, the application updates the Tamagwa interface with the data ID code and trigger transaction. The application then waits until it receives an indication of complete transaction by the firmware through the interface before displaying the result.
|
||||||
|
|
||||||
### PRU Firmware Design
|
### PRU Firmware Flow {#TAMAGAWA_DESIGN_FLOW}
|
||||||
The firmware first initializes the PRU hardware,Then It check whether it is host trigger mode or periodic trigger mode,
|
|
||||||
In host trigger mode it waits until a command has been triggered through the interface,In periodic trigger mode firmware sets host trigger bit based on compare 3 event configured, Upon triggering the transmit data is set up based on the data ID code and the data is transmitted. The data ID code then waits until receiving all the data that depends on the data ID. The parsing over the received data then commences, which is again based on the data ID, and the interface is updated with the result. The CRC verification occurs next and the interface indicates command completion. The firmware then waits for the next command trigger from the interface.
|
The firmware first initializes the PRU hardware. Then it checks whether it is host trigger mode or periodic trigger mode. In host trigger mode, it waits until a command has been triggered through the interface. In periodic trigger mode, the firmware sets host trigger bit based on compare 3 event configured. Upon triggering the transmit data is set up based on the data ID code and the data is transmitted. The data ID code then waits until receiving all the data that depends on the data ID. The parsing over the received data then commences, which is again based on the data ID, and the interface is updated with the result. The CRC verification occurs next and the interface indicates command completion. The firmware then waits for the next command trigger from the interface.
|
||||||
|
|
||||||
\image html Tamagawa_flowchart.JPG "Overview Flow Chart"
|
\image html Tamagawa_flowchart.JPG "Overview Flow Chart"
|
||||||
|
|
||||||
### Initialization
|
### Initialization {#TAMAGAWA_DESIGN_INITIALIZATION}
|
||||||
PRU is set to EnDat mode first. The entire EnDat configuration MMR’s are cleared(CFG registers). Tx global reinit bit in R31 is set to put all channels in default mode. The clock source is selected (ICSSG clock is selected with 200MHZ frequency). In Tx mode, the output data is read from the Tx FIFO at this 1x clock rate. In Rx mode, the input data is sampled at the Oversampling (OS) clock rate. Hence, Tx clock(1x clock) and Rx clock(Oversampling (OS) clock) are setup by selecting oversampling factor(x8). At the end of the initialization status is updated and wait until trigger from user occurs for tamagawa commands.
|
|
||||||
|
PRU is set to EnDat mode first. The entire EnDat configuration MMRs are cleared(CFG registers). Tx global reinit bit in R31 is set to put all channels in default mode. The clock source is selected (ICSSG clock is selected with 200MHZ frequency). In Tx mode, the output data is read from the Tx FIFO at this 1x clock rate. In Rx mode, the input data is sampled at the Oversampling (OS) clock rate. Hence, Tx clock(1x clock) and Rx clock(Oversampling (OS) clock) are setup by selecting oversampling factor(x8). At the end of the initialization status is updated and wait until trigger from user occurs for tamagawa commands.
|
||||||
|
|
||||||
\image html Tamagawa_initialization_flow_chart.JPG "Initialization Flow Chart"
|
\image html Tamagawa_initialization_flow_chart.JPG "Initialization Flow Chart"
|
||||||
|
|
||||||
### Setup Transmit Data
|
### Setup Transmit Data {#TAMAGAWA_DESIGN_TX}
|
||||||
The transmit and receive sizes are determined based on the data ID in the interface.
|
The transmit and receive sizes are determined based on the data ID in the interface.
|
||||||
|
|
||||||
\image html Tamagawa_setup_tx_data.png "Setup Transmit Data Flow Chart"
|
\image html Tamagawa_setup_tx_data.png "Setup Transmit Data Flow Chart"
|
||||||
|
|
||||||
### Transmit and Receive
|
### Transmit and Receive {#TAMAGAWA_DESIGN_TX_RX}
|
||||||
|
|
||||||
In the current implementation, the Transmit data is loaded into the Tx FIFO byte wise. For data readout and reset commands, the requirement is to send 1 frame of 10 bits. So, 2 bytes of data is first loaded into the Tx FIFO and Tx frame size is set to 10 bits to send right data to Encoder. Similarly, for EEPROM Read command, the requirement is to send 3 frames of 10 bits each, so 30 bits in total. For this, 4 byes of data is first loaded into the Tx FIFO and then Tx frame size is set to 30 bits to send right data to Encoder. This is done by using the Tx - Single Shot mode.
|
In the current implementation, the Transmit data is loaded into the Tx FIFO byte wise. For data readout and reset commands, the requirement is to send 1 frame of 10 bits. So, 2 bytes of data is first loaded into the Tx FIFO and Tx frame size is set to 10 bits to send right data to Encoder. Similarly, for EEPROM Read command, the requirement is to send 3 frames of 10 bits each, so 30 bits in total. For this, 4 byes of data is first loaded into the Tx FIFO and then Tx frame size is set to 30 bits to send right data to Encoder. This is done by using the Tx - Single Shot mode.
|
||||||
|
|
||||||
\image html Tamagawa_tx_flow_chart.png "Transmit Flow Chart for data readout, reset and EEPROM Read commands"
|
\image html Tamagawa_tx_flow_chart.png "Transmit Flow Chart for data readout, reset and EEPROM Read commands"
|
||||||
@ -57,7 +59,7 @@ Once the Transmission is complete, the encoder starts sending the data and the f
|
|||||||
|
|
||||||
\image html Tamagawa_rx_flow_chart.png "Receive Flow Chart"
|
\image html Tamagawa_rx_flow_chart.png "Receive Flow Chart"
|
||||||
|
|
||||||
### Receive Data Parse
|
### Receive Data Parse {#TAMAGAWA_DESIGN_RX}
|
||||||
Depending on the data ID used for initiating the transfer, the firmware parses the received data and copies it onto relevant fields in the interface, accordingly.
|
Depending on the data ID used for initiating the transfer, the firmware parses the received data and copies it onto relevant fields in the interface, accordingly.
|
||||||
|
|
||||||
\image html Tamagawa_parse_data.png "Receive Data Parse Flow Chart"
|
\image html Tamagawa_parse_data.png "Receive Data Parse Flow Chart"
|
||||||
|
|||||||
@ -0,0 +1,146 @@
|
|||||||
|
# How to modify Tamagawa software and firmware for Custom UART based Protocols ? {#DEVELOPER_GUIDE_CUSTOM_UART}
|
||||||
|
|
||||||
|
[TOC]
|
||||||
|
|
||||||
|
Various industries like Robotics, Industrial Automation, Manufacturing processes, CNC Machining, and Medical Devices require accurate and precise position control. Multiple UART-based encoder protocols in the market help to effectively measure position, speed, and direction of motion in various systems. It is a challenge to interface the different UART based encoders with a host processor in a multi-channel fashion due to factors like different data sizes and different baud rates used in various protocols.
|
||||||
|
|
||||||
|
The aim of this document is to showcase the capabilities of the Three Channel Peripheral Interface in PRU-ICSSG on Sitara Processors and to show steps for achieving a solution for interfacing different UART based encoders in the market and also provide flexibility in selection of baud rates for the encoder communication. The same solution can also be used for general purpose UART like debugging, logging, etc. For more details on Three Channel Peripheral Interface of PRU-ICSSG, please see section "6.4.5.2.2.3.6 Three Channel Peripheral Interface" of <a href="https://www.ti.com/lit/ug/spruim2h/spruim2h.pdf" target="_blank">AM243x Technical Reference Manual</a>.
|
||||||
|
|
||||||
|
There are three main reasons when it comes to creating a programmable software based solution for a custom multi-channel UART encoder interface:
|
||||||
|
|
||||||
|
1. Different sized data frames
|
||||||
|
2. Multiple channels
|
||||||
|
3. Multiple baud rates
|
||||||
|
|
||||||
|
This SDK contains software (which runs on ARM core) and firmware (which runs on PRU-ICSSG) which implement the interface for Tamagawa encoders. More details on Tamagawa implementation can be found in \ref TAMAGAWA and \ref TAMAGAWA_DESIGN pages.
|
||||||
|
|
||||||
|
There are three aspects of this firmware + software solution :
|
||||||
|
1. PRU firmware running on a PRU-ICSSG core
|
||||||
|
2. Driver running on ARM core
|
||||||
|
3. Application running on ARM core
|
||||||
|
|
||||||
|
## PRU firmware running on a PRU-ICSSG core
|
||||||
|
|
||||||
|
Firmware sources for Tamagawa are available in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware" folder.
|
||||||
|
|
||||||
|
Following are different aspects of firmware which can be tweaked in firmware based on the need of custom UART implementation.
|
||||||
|
|
||||||
|
Firstly, initialization is done as shown in \ref TAMAGAWA_DESIGN_INITIALIZATION. Then the configuration for send and receive is done as shown in \ref TAMAGAWA_DESIGN_TX_RX.
|
||||||
|
|
||||||
|
### PRU-ICSS Internal Pinmuxing
|
||||||
|
|
||||||
|
PRU-ICSSG supports an internal wrapper multiplexing that expands the device top-level multiplexing. This wrapper multiplexing is controlled by the GPCFGx_REG register (where x = 0 or
|
||||||
|
1) in the PRU-ICSSG CFG register space and allows MII_RT, 3 channel Peripheral Interface, and Sigma Delta functionality to be muxed with the PRU GPI/O device signals. For this use-case, 3 channel Peripheral Interface should be configured.
|
||||||
|
|
||||||
|
#### Relevant Code Sections in Tamagawa
|
||||||
|
|
||||||
|
- Code under `TAMAGAWA_INIT` in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/tamagawa_main.asm"
|
||||||
|
|
||||||
|
### Shared Memory Definition
|
||||||
|
|
||||||
|
Communication is needed between ARM core and PRUs. For this purpose, data memory of PRU-ICSSG is typically used. The memory map of this shared memory region for Tamagawa is defined in one file. Based on the need, this memory map can be updated to add or remove data variables as per the need.
|
||||||
|
|
||||||
|
#### Relevant Code Sections in Tamagawa
|
||||||
|
|
||||||
|
- "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/tamagawa_interface.h" file
|
||||||
|
|
||||||
|
### Clock Configuration for Interface Speed
|
||||||
|
|
||||||
|
The Peripheral Interface module has two source clock options, ICSSGn_UART_CLK (default) and ICSSGn_ICLK. There are two independent clock dividers (div16) for the 1x and oversampling (OS) clocks, and each clock divider is configurable by two cascading dividers in ICSSG_PRUx_ED_RX_CFG_REG and ICSSG_PRU0_ED_TX_CFG_REG registers.
|
||||||
|
|
||||||
|
The 1x clock is output on the clock signal. In TX mode, the output data is read from the TX FIFO at this 1x clock rate. In RX mode, the input data is sampled at the OS clock rate.Multiple options are available for start and stop conditions for the clock.
|
||||||
|
|
||||||
|
For more details on clocking capabilities and configuration, please see section "6.4.5.2.2.3.6.3 Clock Generation" of <a href="https://www.ti.com/lit/ug/spruim2h/spruim2h.pdf" target="_blank">AM243x Technical Reference Manual</a>.
|
||||||
|
|
||||||
|
#### Relevant Code Sections in Tamagawa
|
||||||
|
|
||||||
|
- Code under `TAMAGAWA_SET_CLOCK`, and `FN_SET_TX_CLK` in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/tamagawa_main.asm"
|
||||||
|
|
||||||
|
For Tamagawa, this configuration is done for 2.5 MHz or 5 MHz based on the encoder being used.
|
||||||
|
|
||||||
|
### Trigger Mode
|
||||||
|
|
||||||
|
After initialization, the firmware checks whether it is host trigger mode or periodic trigger mode. In host trigger mode, it waits until a command has been triggered through the share memory interface from ARM core. In periodic trigger mode, the firmware sets host trigger bit based on PRU-ICSS IEP compare event configured. Upon triggering the transmit data is set up and transmitted.
|
||||||
|
|
||||||
|
#### Relevant Code Sections in Tamagawa
|
||||||
|
|
||||||
|
- Code under `CHECK_OPERATING_MODE`, `HANDLE_PERIODIC_TRIGGER_MODE`, and `HANDLE_HOST_TRIGGER_MODE` in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/tamagawa_main.asm"
|
||||||
|
|
||||||
|
### Send and Receive
|
||||||
|
|
||||||
|
Now the configuration for sending and receiving data over the interface needs to be done.
|
||||||
|
|
||||||
|
- Send (TX) : For Tamagawa, the typical size of one transfer is 10 or 30 or 40 bits. `FN_SEND` configures the size of TX in ICSS_CFG_PRUx_ED_CHx_CFG0 register. This code can be modified to change the size to any number. The TX FIFO size is 32 bits. So if we need to send more than 32 bits in one shot, then continuous FIFO loading mode has to be used. In Tamagawa, for EEPROM Write Command this mode is used. `FN_SEND` configures the size to 10 bits for normal commands, 30 bits for EEPROM Read command and 0 bit for EEPROM Write command (which means continuous mode). For continuous mode, we need to keep polling the FIFO level and pushing into FIFO based on free space. Data is loaded into FIFO and then TX GO is asserted which starts the TX. The flow for transmit in Tamagawa is explained in \ref TAMAGAWA_DESIGN_TX.
|
||||||
|
|
||||||
|
- Receive (RX) : After TX completion, RX mode is enabled in peripheral interface. `RECEIVE_FRAMES_S` and `RECEIVE_FRAMES_M` contain the code for receive. Start bit polarity of RX can be configured in ICSSG_PRUx_ED_RX_CFG_REG. Once this bit is seen on RX pin, the RX FIFO starts filling up. The size of RX needs to configured based on the protocol requirement. The data needs to be fetched from FIFO to ensure that overflow of RX FIFO does not occur. The clock will be stopped based on the clock mode configured before the start of the RX operation. The flow for receive in Tamagawa is explained in \ref TAMAGAWA_DESIGN_TX_RX.
|
||||||
|
|
||||||
|
For more details on the programming sequence for TX, RX and clock configuration, please see section "6.4.5.2.2.3.6.4 Three Peripheral Mode Basic Programming Model" of <a href="https://www.ti.com/lit/ug/spruim2h/spruim2h.pdf" target="_blank">AM243x Technical Reference Manual</a>.
|
||||||
|
|
||||||
|
#### Relevant Code Sections in Tamagawa
|
||||||
|
|
||||||
|
- Code under `FN_SEND_RECEIVE_TAMAGAWA` and `FN_SEND` in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/tamagawa_main.asm"
|
||||||
|
- Code under `TAMAGAWA_SEND_MACRO` in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/tamagawa_send.h"
|
||||||
|
- Code under `RECEIVE_FRAMES_S` in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/single_ch_receive_frames.h" for single channel receive
|
||||||
|
- Code under `RECEIVE_FRAMES_M` in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/multi_ch_receive_frames.h" for multi channel receive
|
||||||
|
|
||||||
|
### Cyclic Redundancy Check (CRC) Computation
|
||||||
|
|
||||||
|
On the data received, CRC needs to be computed. The RX code does on-the-fly CRC computation as it is receiving data bits continuously. The computed CRC can then be compared with the CRC from the received data.
|
||||||
|
|
||||||
|
For Tamagawa, the CRC polynomial is (x<sup>8</sup> + 1).
|
||||||
|
|
||||||
|
This code for on-the-fly CRC computation can be modified for any other polynomial as well. The PRU instruction cycle budget requirement will vary based on the polynomial. We need to ensure that RX loop timing for avoiding RX FIFO underflow is not violated. If on-the-fly CRC computation is not viable, then we can either do CRC computation as a part of post-processing after RX is complete, or check if HW CRC16/32 Module from PRU-ICSSG can be used. The CRC16/32 module directly connects with the PRU internal registers R25-R29 through use of the PRU broadside interface and XFR instructions. It supports three different polynomials. For more details, see section "6.4.6.2.2 PRU CRC16/32 Module" of <a href="https://www.ti.com/lit/ug/spruim2h/spruim2h.pdf" target="_blank">AM243x Technical Reference Manual</a>.
|
||||||
|
|
||||||
|
#### Relevant Code Sections in Tamagawa
|
||||||
|
|
||||||
|
- Code under `RECEIVE_FRAMES_S` in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/single_ch_receive_frames.h" for single channel receive
|
||||||
|
- Code under `RECEIVE_FRAMES_M` in "${SDK_INSTALL_PATH}/source/position_sense/tamagawa/firmware/multi_ch_receive_frames.h" for multi channel receive
|
||||||
|
|
||||||
|
## Driver running on ARM core
|
||||||
|
|
||||||
|
Driver layer does communication with PRU core(s) via shared memory. New driver APIs can be added or existing APIs can be updated based on the changes need in this communication.
|
||||||
|
|
||||||
|
|
||||||
|
The APIs for Tamagawa are described in \ref TAMAGAWA_API_MODULE.
|
||||||
|
|
||||||
|
## Application running on ARM core
|
||||||
|
|
||||||
|
Tamagawa application does below configures pinmux, UART, PRU-ICSSG clock, and loads the the PRU firmware. This application is controlled with a terminal interface using a serial over USB connection between the PC host and the EVM, using which the data transfer can be triggered. The application collects the data entered by the user, configures the relevant interface and sends the command. Once the command completion is indicated by the interface, the status of the transaction is checked. If the Status indicates success, the result is presented to the user.
|
||||||
|
|
||||||
|
For a new custom UART application, we can start with the Tamagawa application as most of the configuration like pinmux, PRU-ICSSG initialization, etc. will be same as in Tamagawa. Based on the changes in driver APIs and features implemented in firmware, the API calls can be updated in the application.
|
||||||
|
|
||||||
|
## References {#DEVELOPER_GUIDE_CUSTOM_UART_ADDITIONAL_REFERENCES}
|
||||||
|
|
||||||
|
Please refer to following documents to understand more about certain topics discussed in this document.
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th> Document
|
||||||
|
<th> Description
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td> \ref TAMAGAWA <br/>
|
||||||
|
\ref TAMAGAWA_DESIGN
|
||||||
|
<td> SDK Documentation for Tamagawa features and design
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td rowspan="4"><a href="https://www.ti.com/lit/ug/spruim2h/spruim2h.pdf" target="_blank">AM243x Technical Reference Manual</a>
|
||||||
|
<td> Section "6.4.5.2.2.3.6 Three Channel Peripheral Interface"
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td> Section "6.4.5.2.2.3.6.3 Clock Generation"
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td> Section 6.4.5.2.2.3.6.4 Three Peripheral Mode Basic Programming Model
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td> Section "6.4.6.2.2 PRU CRC16/32 Module"
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td> \ref TAMAGAWA_API_MODULE
|
||||||
|
<td> SDK Documentation for Tamagawa Driver APIs
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
|
||||||
|
</table>
|
||||||
|
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
# Developer Guides {#DEVELOPER_GUIDES}
|
||||||
|
|
||||||
|
[TOC]
|
||||||
|
|
||||||
|
Refer below pages for additional useful information for developers to efficiently and easily use the various SDK features and tools.
|
||||||
|
|
||||||
|
- <a href="@VAR_MCU_SDK_DOCS_PATH/DEVELOPER_GUIDES.html" target="_blank">MCU+ SDK Developer Guides</a>
|
||||||
|
- \subpage DEVELOPER_GUIDE_CUSTOM_UART
|
||||||
@ -9,6 +9,8 @@ PROJECT_NAME = "AM243x Motor Control SDK"
|
|||||||
|
|
||||||
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/main_page/main_page.md
|
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/main_page/main_page.md
|
||||||
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/migration_guides/mcusdk_migration_guide.md
|
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/migration_guides/mcusdk_migration_guide.md
|
||||||
|
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/developer_guides/developer_guides.md
|
||||||
|
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/developer_guides/developer_guide_custom_uart.md
|
||||||
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/device/$(DEVICE)/release_notes.md
|
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/device/$(DEVICE)/release_notes.md
|
||||||
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/device/$(DEVICE)/release_notes_09_00_00.md
|
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/device/$(DEVICE)/release_notes_09_00_00.md
|
||||||
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/device/$(DEVICE)/release_notes_09_01_00.md
|
INPUT += $(MOTOR_CONTROL_SDK_PATH)/docs_src/docs/api_guide/device/$(DEVICE)/release_notes_09_01_00.md
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
C:/ti/motor_control_sdk/docs_src/docs/api_guide/examples/bissc_example.md:71: warning: Found \endcond command without matching \cond
|
|
||||||
@ -68,7 +68,6 @@ The BISS-C receiver firmware running on ICSS0-PRU1 provides a defined interface.
|
|||||||
- BISS-C Encoders
|
- BISS-C Encoders
|
||||||
- <a href="https://www.ti.com/tool/LP-AM243" target="_blank"> AM243x-LP Board </a>
|
- <a href="https://www.ti.com/tool/LP-AM243" target="_blank"> AM243x-LP Board </a>
|
||||||
- <a href="https://www.ti.com/tool/BP-AM2BLDCSERVO" target="_blank"> BP-AM2BLDCSERVO </a>
|
- <a href="https://www.ti.com/tool/BP-AM2BLDCSERVO" target="_blank"> BP-AM2BLDCSERVO </a>
|
||||||
\endcond
|
|
||||||
|
|
||||||
## Hardware Setup
|
## Hardware Setup
|
||||||
|
|
||||||
|
|||||||
@ -6,9 +6,9 @@ Starting with MCU+ SDK version 08.05.00, the Tamagawa firmware and examples are
|
|||||||
|
|
||||||
Tamagawa diagnostic application does below,
|
Tamagawa diagnostic application does below,
|
||||||
|
|
||||||
Configures pinmux, GPIO, UART, ICSS clock to 200MHz,
|
- Configures pinmux, GPIO, UART, ICSS clock to 200MHz
|
||||||
Initializes ICSS0-PRU1,
|
- Initializes ICSS0-PRU1
|
||||||
Loads the initialization section of PRU firmware & executes it.
|
- Loads the initialization section of PRU firmware & executes it
|
||||||
|
|
||||||
This application is controlled with a terminal interface using a serial over USB connection between the PC host and the EVM.
|
This application is controlled with a terminal interface using a serial over USB connection between the PC host and the EVM.
|
||||||
Please connect a USB cable between the PC and the EVM/LP.
|
Please connect a USB cable between the PC and the EVM/LP.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user