Add CMSIS V5.4.0, please refer to index.html available under \docs folder.
Note: content of \CMSIS\Core\Include has been copied under \Include to keep the same structure
used in existing projects, and thus avoid projects mass update
Note: the following components have been removed from ARM original delivery (as not used in ST packages)
- CMSIS_EW2018.pdf
- .gitattributes
- .gitignore
- \Device
- \CMSIS
- \CoreValidation
- \DAP
- \Documentation
- \DoxyGen
- \Driver
- \Pack
- \RTOS\CMSIS_RTOS_Tutorial.pdf
- \RTOS\RTX
- \RTOS\Template
- \RTOS2\RTX
- \Utilities
- All ARM/GCC projects files are deleted from \DSP, \RTOS and \RTOS2
Change-Id: Ia026c3f0f0d016627a4fb5a9032852c33d24b4d3
30 lines
827 B
JavaScript
30 lines
827 B
JavaScript
function show(type)
|
|
{
|
|
count = 0;
|
|
for (var key in methods) {
|
|
var row = document.getElementById(key);
|
|
if ((methods[key] & type) != 0) {
|
|
row.style.display = '';
|
|
row.className = (count++ % 2) ? rowColor : altColor;
|
|
}
|
|
else
|
|
row.style.display = 'none';
|
|
}
|
|
updateTabs(type);
|
|
}
|
|
|
|
function updateTabs(type)
|
|
{
|
|
for (var value in tabs) {
|
|
var sNode = document.getElementById(tabs[value][0]);
|
|
var spanNode = sNode.firstChild;
|
|
if (value == type) {
|
|
sNode.className = activeTableTab;
|
|
spanNode.innerHTML = tabs[value][1];
|
|
}
|
|
else {
|
|
sNode.className = tableTab;
|
|
spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>";
|
|
}
|
|
}
|
|
}
|