Skip to content

Commit

Permalink
Add TI mcu_plus_sdk_am62x_08_06_00_18
Browse files Browse the repository at this point in the history
1. Download
  https://dr-download.ti.com/software-development/software-development-kit-sdk/MD-IIN1zFBAlS/08.06.00.18/mcu_plus_sdk_am62x_08_06_00_18-linux-x64-installer.run
from
  https://www.ti.com/tool/download/MCU-PLUS-SDK-AM62X/08.06.00.18

2. chmod +x mcu_plus_sdk_am62x_08_06_00_18-linux-x64-installer.run
3. ./mcu_plus_sdk_am62x_08_06_00_18-linux-x64-installer.run
4. cd ~/ti/mcu_plus_sdk_am62x_08_06_00_18
5. git init;
6. git checkout -b mcu_plus_sdk_am62x_08_06_00_18_var01
7. git add --all
8. git commit -s

Signed-off-by: Nate Drude <[email protected]>
  • Loading branch information
nsdrude authored and FrancescoFerraro committed May 4, 2023
0 parents commit 4fa76a4
Show file tree
Hide file tree
Showing 5,509 changed files with 1,405,758 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
5,048 changes: 5,048 additions & 0 deletions .metadata/.tirex/am62x.content.tirex.json

Large diffs are not rendered by default.

Binary file added .metadata/.tirex/mcu_plus_sdk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions .metadata/.tirex/package.ccs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[
{
"rootMacroName": "COM_TI_MCU_PLUS_SDK_AM62X_INSTALL_DIR",
"compilerIncludePath": [ ],
"compilerSymbols": [ ],
"linkerSearchPath": [ ],
"properties": {
"rtsc.repositories": [
"source",
"."
]
},
"helpTocs": [
],
"docs": [
]
}
]
18 changes: 18 additions & 0 deletions .metadata/.tirex/package.tirex.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[
{
"metadataVersion": "3.01.00",
"id": "com.ti.MCU_PLUS_SDK_AM62X",
"name": "MCU+ SDK for AM62x",
"rootCategory": [ "MCU+ SDK", "MCU+ SDK for AM62x" ],
"version": "08.06.00.18",
"type": "software",
"image": "./mcu_plus_sdk.png",
"devices": ["AM62x"],
"tags": ["SDK", "Baremetal", "FreeRTOS"],
"description": "Welcome to MCU+ SDK for AM62x. This SDK contains examples, libraries and tools to develop RTOS and no-RTOS based applications for ARM R5F, ARM M4F CPUs and related peripherals.",
"dependencies": [
{ "packageId": "sysconfig", "version": "1.13.0", "require": "mandatory" },
{ "packageId": "ti_cgt_tiarmclang", "version": "2.1.2", "require": "mandatory" }
]
}
]
31 changes: 31 additions & 0 deletions .metadata/product.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "MCU_PLUS_SDK_AM62x",
"displayName": "MCU+ SDK for AM62x",
"version": "08.06.00",
"documentationPath": "../docs",
"includePaths": [
"../source",
],
"components": [
"/kernel/dpl",
"/drivers/drivers",
"/board/board",
],
"devices": [
"AM62x",
],
"contexts": {
"AM62x": [
"m4fss0-0",
"r5fss0-0",
],
},
"pinmuxUIOptions": {
"group": "merged",
"hidePeripheralTab": false,
"showPinTable": true,
"showSignals": true,
"showUsed": true
},
"minToolVersion" : "1.13.0"
}
12 changes: 12 additions & 0 deletions README_FIRST_AM62X.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<html>
<head>
<title>Texas Instruments</title>
<meta http-equiv="refresh" content="0; URL=./docs/api_guide_am62x/index.html">
<meta name="keywords" content="automatic redirection">
</head>
<body>
If your browser doesn't automatically go to the SDK homepage within a few seconds,
please click
<a href="./docs/api_guide_am62x/index.html">HERE</a>
</body>
</html>
44 changes: 44 additions & 0 deletions devconfig/devconfig.mak
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Device type (HS/GP)
DEVICE_TYPE?=GP

# Path to the signing tools, keys etc
SIGNING_TOOL_PATH=$(MCU_PLUS_SDK_PATH)/tools/boot/signing

# Path to the keys
ROM_DEGENERATE_KEY:=$(SIGNING_TOOL_PATH)/rom_degenerateKey.pem
ifeq ($(DEVICE),am263x)
CUST_MPK=$(SIGNING_TOOL_PATH)/mcu_custMpk.pem
else ifeq ($(DEVICE),am273x)
CUST_MPK=$(SIGNING_TOOL_PATH)/mcu_custMpk.pem
else ifeq ($(DEVICE),awr294x)
CUST_MPK=$(SIGNING_TOOL_PATH)/mcu_custMpk.pem
else ifeq ($(DEVICE),am62x)
CUST_MPK=$(SIGNING_TOOL_PATH)/custMpk_am62x.pem
CUST_MEK=$(SIGNING_TOOL_PATH)/custMek_am62x.txt
else ifeq ($(DEVICE),am62ax)
CUST_MPK=$(SIGNING_TOOL_PATH)/custMpk_am62ax.pem
CUST_MEK=$(SIGNING_TOOL_PATH)/custMek_am62ax.txt
else
CUST_MPK=$(SIGNING_TOOL_PATH)/custMpk_am64x_am243x.pem
CUST_MEK=$(SIGNING_TOOL_PATH)/custMek_am64x_am243x.txt
endif

# Encryption option for application (yes/no)
ENC_ENABLED?=no

# Encryption option for SBL (yes/no)
ENC_SBL_ENABLED?=yes

# Debug option for HS (yes/no)
DBG_ENABLED?=no

# Generic macros to be used depending on the device type
APP_SIGNING_KEY=
APP_ENCRYPTION_KEY=

ifeq ($(DEVICE_TYPE),HS)
APP_SIGNING_KEY=$(CUST_MPK)
APP_ENCRYPTION_KEY=$(CUST_MEK)
else
APP_SIGNING_KEY=$(ROM_DEGENERATE_KEY)
endif
207 changes: 207 additions & 0 deletions docs/api_guide_am62x/AddrTranslateP_8h.html

Large diffs are not rendered by default.

275 changes: 275 additions & 0 deletions docs/api_guide_am62x/AddrTranslateP_8h_source.html

Large diffs are not rendered by default.

123 changes: 123 additions & 0 deletions docs/api_guide_am62x/AddrTranslateP_8md.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
<!-- HTML header for doxygen 1.8.11-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="shortcut icon" href="favicon.png" type="image/png">
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.20"/>
<title>AM62x MCU+ SDK: AddrTranslateP.md File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<style>
.tinav {
background: #c00;
/* height: 41.375px; */
height: 30px;
}
</style>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function() { init_search(); });
/* @license-end */
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 40px;">
<td id="projectlogo"><a href="https://www.ti.com"><img alt="Logo" src="ti_logo.svg"/></a></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">AM62x MCU+ SDK
&#160;<span id="projectnumber">08.06.00</span>
</div>
</td>
<td> <div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.svg"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.svg" alt=""/></a>
</span>
</div>
</td>
</tr>
</tbody>
</table>
<div class=tinav></div>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.20 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('AddrTranslateP_8md.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>

<div class="header">
<div class="headertitle">
<div class="title">AddrTranslateP.md File Reference</div> </div>
</div><!--header-->
<div class="contents">
</div><!-- contents -->
</div><!-- doc-content -->
<!-- HTML footer for doxygen 1.8.11-->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="AddrTranslateP_8md.html">AddrTranslateP.md</a></li>
<li class="footer">generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.20 </li>
</ul>
</div>
</body>
</html>
130 changes: 130 additions & 0 deletions docs/api_guide_am62x/BOARD_DRIVERS_PAGE.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
<!-- HTML header for doxygen 1.8.11-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="shortcut icon" href="favicon.png" type="image/png">
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.20"/>
<title>AM62x MCU+ SDK: Board Peripheral Drivers</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<style>
.tinav {
background: #c00;
/* height: 41.375px; */
height: 30px;
}
</style>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function() { init_search(); });
/* @license-end */
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 40px;">
<td id="projectlogo"><a href="https://www.ti.com"><img alt="Logo" src="ti_logo.svg"/></a></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">AM62x MCU+ SDK
&#160;<span id="projectnumber">08.06.00</span>
</div>
</td>
<td> <div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.svg"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.svg" alt=""/></a>
</span>
</div>
</td>
</tr>
</tbody>
</table>
<div class=tinav></div>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.20 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('BOARD_DRIVERS_PAGE.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>

<div class="PageDoc"><div class="header">
<div class="headertitle">
<div class="title">Board Peripheral Drivers </div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><p><a class="anchor" id="md_components_board_board"></a></p>
<p>This module has information related to the different board level peripherals that are supported</p>
<p>It consists of below sub-modules</p>
<ul>
<li><a class="el" href="BOARD_FLASH_PAGE.html">Flash</a></li>
<li><a class="el" href="BOARD_LED_PAGE.html">LED</a> </li>
</ul>
</div></div><!-- contents -->
</div><!-- PageDoc -->
</div><!-- doc-content -->
<!-- HTML footer for doxygen 1.8.11-->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.20 </li>
</ul>
</div>
</body>
</html>
Loading

0 comments on commit 4fa76a4

Please sign in to comment.