text stringlengths 9 39.2M | dir stringlengths 25 226 | lang stringclasses 163
values | created_date timestamp[s] | updated_date timestamp[s] | repo_name stringclasses 751
values | repo_full_name stringclasses 752
values | star int64 1.01k 183k | len_tokens int64 1 18.5M |
|---|---|---|---|---|---|---|---|---|
```objective-c
#ifndef MUTEX_H
#define MUTEX_H
#include <stdint.h>
#include "cmsis_os.h"
namespace rtos {
/*! The Mutex class is used to synchronise the execution of threads.
This is for example used to protect access to a shared resource.
*/
class Mutex {
public:
/*! Create and Initialize a Mutex object */
... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/Mutex.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 256 |
```c++
#include "Semaphore.h"
#include <string.h>
//#include "error.h"
namespace rtos {
Semaphore::Semaphore(int32_t count) {
#ifdef CMSIS_OS_RTX
memset(_semaphore_data, 0, sizeof(_semaphore_data));
_osSemaphoreDef.semaphore = _semaphore_data;
#endif
_osSemaphoreId = osSemaphoreCreate(&_osSemaphoreDef, c... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/Semaphore.cpp | c++ | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 132 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_TIMER.C
* Purpose: User timer functions
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Timer.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 875 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_SEMAPHORE.C
* Purpose: Implements binary and counting semaphores
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Semaphore.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,109 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_HAL_CM.H
* Purpose: Hardware Abstraction Layer for Cortex-M definitions
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless ... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_HAL_CM.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,364 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_MEMBOX.C
* Purpose: Interface functions for fixed memory block management system
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless r... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_MemBox.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,152 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_MUTEX.C
* Purpose: Implements mutex synchronization objects
* Rev.: V4.82
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Mutex.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,047 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_TASK.C
* Purpose: Task functions and system start up.
* Rev.: V4.80
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law o... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Task.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 3,614 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_EVENT.H
* Purpose: Implements waits and wake-ups for event flags
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless require... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Event.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 241 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_TIMER.H
* Purpose: User timer functions
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or ag... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Timer.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 182 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_ROBIN.H
* Purpose: Round Robin Task switching definitions
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Robin.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 162 |
```unknown
<?xml version="1.0" encoding="UTF-8"?>
<package schemaVersion="1.7.7" xmlns:xs="path_to_url" xs:noNamespaceSchemaLocation="path_to_url">
<name>CMSIS</name>
<description>CMSIS (Common Microcontroller Software Interface Standard)</description>
<vendor>ARM</vendor>
<!-- <license>license.txt</license> -... | /content/code_sandbox/ARM.CMSIS.pdsc | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 53,037 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_SYSTEM.C
* Purpose: System Task Manager
* Rev.: V4.82
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_System.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,878 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_MEMBOX.H
* Purpose: Interface functions for fixed memory block management system
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_MemBox.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 221 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_SEMAPHORE.H
* Purpose: Implements binary and counting semaphores
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless require... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Semaphore.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 215 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_ROBIN.C
* Purpose: Round Robin Task switching
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Robin.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 451 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_TYPEDEF.H
* Purpose: Type Definitions
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_TypeDef.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,534 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_MEMORY.H
* Purpose: Interface functions for Dynamic Memory Management System
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Un... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Memory.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 217 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_MUTEX.H
* Purpose: Implements mutex synchronization objects
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Mutex.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 180 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_LIST.C
* Purpose: Functions for the management of different lists
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appl... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_List.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,514 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM.C
* Purpose: Hardware Abstraction Layer for Cortex-M
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable la... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/HAL_CM.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,224 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_MAILBOX.H
* Purpose: Implements waits and wake-ups for mailbox messages
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless ... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Mailbox.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 264 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_TIME.C
* Purpose: Delay and interval wait functions
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or ... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Time.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 444 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_LIST.H
* Purpose: Functions for the management of different lists
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless requir... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_List.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 395 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_EVENT.C
* Purpose: Implements waits and wake-ups for event flags
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Event.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,288 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_TASK.H
* Purpose: Task functions and system start up.
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Task.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 517 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RTX_CONFIG.H
* Purpose: Exported functions of RTX_Config.c
* Rev.: V4.81
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appl... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/RTX_Config.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 503 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_TIME.H
* Purpose: Delay and interval wait functions definitions
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Time.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 184 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_SYSTEM.H
* Purpose: System Task Manager definitions
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicab... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_System.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 231 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_MAILBOX.C
* Purpose: Implements waits and wake-ups for mailbox messages
* Rev.: V4.81
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required b... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Mailbox.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,370 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RT_MEMORY.C
* Purpose: Interface functions for Dynamic Memory Management System
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless requi... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_Memory.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 932 |
```unknown
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM3.S
* Purpose: Hardware Abstraction Layer for Cortex-M3
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/GCC/HAL_CM3.S | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,274 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: rt_CMSIS.c
* Purpose: CMSIS RTOS API
* Rev.: V4.82
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writi... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/rt_CMSIS.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 17,032 |
```unknown
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM0.S
* Purpose: Hardware Abstraction Layer for Cortex-M0
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/GCC/HAL_CM0.S | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,666 |
```unknown
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM4.S
* Purpose: Hardware Abstraction Layer for Cortex-M4
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/GCC/HAL_CM4.S | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,954 |
```unknown
;/*your_sha256_hash------------
; * CMSIS-RTOS - RTX
; *your_sha256_hash------------
; * Name: SVC_TABLE.S
; * Purpose: Pre-defined SVC Table for Cortex-M
; * Rev.: V4.70
; *your_sha256_hash------------
; *
; *
; *
; *
; * www.apache.org/licenses/LICENSE-2.0
; *
; * Unless required ... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/GCC/SVC_Table.S | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 225 |
```unknown
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<ProjectOpt xmlns:xsi="path_to_url" xsi:noNamespaceSchemaLocation="project_optx.xsd">
<SchemaVersion>1.0</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<Extensions>
<cExt>*.c</cExt>
<aExt>*.s*; *.src; *.a*</aExt... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/GCC/RTX_Lib_CM.uvoptx | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 14,426 |
```gas
;/*your_sha256_hash------------
; * CMSIS-RTOS - RTX
; *your_sha256_hash------------
; * Name: SVC_TABLE.S
; * Purpose: Pre-defined SVC Table for Cortex-M
; * Rev.: V4.70
; *your_sha256_hash------------
; *
; *
; *
; *
; * www.apache.org/licenses/LICENSE-2.0
; *
; * Unless required by... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/ARM/SVC_Table.s | gas | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 255 |
```unknown
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Project xmlns:xsi="path_to_url" xsi:noNamespaceSchemaLocation="project_projx.xsd">
<SchemaVersion>2.1</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<Targets>
<Target>
<TargetName>CM0_LE</TargetName>
<T... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/GCC/RTX_Lib_CM.uvprojx | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 37,177 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM3.C
* Purpose: Hardware Abstraction Layer for Cortex-M3
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable ... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/ARM/HAL_CM3.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,799 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM0.C
* Purpose: Hardware Abstraction Layer for Cortex-M0
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable ... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/ARM/HAL_CM0.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,233 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM4.C
* Purpose: Hardware Abstraction Layer for Cortex-M4
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable ... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/ARM/HAL_CM4.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,409 |
```unknown
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<ProjectOpt xmlns:xsi="path_to_url" xsi:noNamespaceSchemaLocation="project_optx.xsd">
<SchemaVersion>1.0</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<Extensions>
<cExt>*.c</cExt>
<aExt>*.s*; *.src; *.a*</aExt... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/ARM/RTX_Lib_CM.uvoptx | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 16,153 |
```unknown
<?xml version="1.0" encoding="UTF-8"?>
<workspace>
<project>
<path>$WS_DIR$\RTX_Lib_CM.ewp</path>
</project>
<batchBuild>
<batchDefinition>
<name>RTX_Lib_CM</name>
<member>
<project>RTX_Lib_CM</project>
<configuration>CM0_LE<... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/IAR/RTX_Lib_CM.eww | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 261 |
```gas
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM4.S
* Purpose: Hardware Abstraction Layer for Cortex-M4
* Rev.: V4.79
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicabl... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/IAR/HAL_CM4.s | gas | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,368 |
```gas
;/*your_sha256_hash------------
; * CMSIS-RTOS - RTX
; *your_sha256_hash------------
; * Name: SVC_TABLE.S
; * Purpose: Pre-defined SVC Table for Cortex-M
; * Rev.: V4.70
; *your_sha256_hash------------
; *
; * All rights reserved.
; *
; *
; *
; * www.apache.org/licenses/LICENSE-2.0
;... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/IAR/SVC_Table.s | gas | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 265 |
```gas
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM3.S
* Purpose: Hardware Abstraction Layer for Cortex-M3
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicabl... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/IAR/HAL_CM3.s | gas | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,770 |
```gas
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: HAL_CM0.S
* Purpose: Hardware Abstraction Layer for Cortex-M0
* Rev.: V4.70
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicabl... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/IAR/HAL_CM0.s | gas | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,320 |
```unknown
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Project xmlns:xsi="path_to_url" xsi:noNamespaceSchemaLocation="project_projx.xsd">
<SchemaVersion>2.1</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<Targets>
<Target>
<TargetName>CM0_LE</TargetName>
<T... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/ARM/RTX_Lib_CM.uvprojx | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 62,401 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RTX_Conf_CM.C
* Purpose: Configuration of CMSIS RTX Kernel for Cortex-M
* Rev.: V4.70.1
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | /content/code_sandbox/CMSIS/RTOS/RTX/Templates/RTX_Conf_CM.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,274 |
```objective-c
/* your_sha256_hash------
* $Date: 5. February 2013
* $Revision: V1.02
*
* Project: CMSIS-RTOS API
* Title: cmsis_os.h RTX header file
*
* Version 0.02
* Initial Proposal Phase
* Version 0.03
* osKernelStart added, optional feature: main started as thread
* osSem... | /content/code_sandbox/CMSIS/RTOS/RTX/INC/cmsis_os.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 7,127 |
```objective-c
/*your_sha256_hash------------
* CMSIS-RTOS - RTX
*your_sha256_hash------------
* Name: RTX_CM_LIB.H
* Purpose: RTX Kernel System Configuration
* Rev.: V4.82
*your_sha256_hash------------
*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... | /content/code_sandbox/CMSIS/RTOS/RTX/INC/RTX_CM_lib.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 4,159 |
```shell
#!/bin/bash
VERSION=4.82.0
if [ -z "$JENKINS_FAMILY_ENV" ]; then
ARTIFACTORY_URL=path_to_url
else
ARTIFACTORY_URL=path_to_url
fi
if [ -z "$ARTIFACTORY_API_KEY" ]; then
echo "Please set your Artifactory in ARTIFACTORY_API_KEY"
echo ""
echo "1. Browse to $(dirname $(dirname $ARTIFACTORY_URL))/ui/... | /content/code_sandbox/CMSIS/RTOS/RTX/LIB/fetch_libs.sh | shell | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 596 |
```c
#include "cmsis_os.h" // CMSIS RTOS header file
/*your_sha256_hash------------
* Timer: Sample timer functions
*your_sha256_hash-----------*/
/*----- One-Shoot Timer Example -----*/
static void Timer1_Callback (void const *arg); // prototype fo... | /content/code_sandbox/CMSIS/RTOS/RTX/UserCodeTemplates/Timer.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 464 |
```c
#include "cmsis_os.h" // CMSIS RTOS header file
/*your_sha256_hash------------
* Mutex creation & usage
*your_sha256_hash-----------*/
void Thread_Mutex (void const *argument); // thread function
osThreadId tid_Thread_Mutex; ... | /content/code_sandbox/CMSIS/RTOS/RTX/UserCodeTemplates/Mutex.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 333 |
```c
#include "cmsis_os.h" // CMSIS RTOS header file
/*your_sha256_hash------------
* Memory Pool creation & usage
*your_sha256_hash-----------*/
#define MEMPOOL_OBJECTS 16 // number of Memory Pool Objects
typedef struct { ... | /content/code_sandbox/CMSIS/RTOS/RTX/UserCodeTemplates/MemPool.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 464 |
```c
/*your_sha256_hash------------
* CMSIS-RTOS 'main' function template
*your_sha256_hash-----------*/
#define osObjectsPublic // define objects in main module
#include "osObjects.h" // RTOS object definitions
/*
* main: initialize and start the system
*/
int main (void... | /content/code_sandbox/CMSIS/RTOS/RTX/UserCodeTemplates/main.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 126 |
```c
#include "cmsis_os.h" // CMSIS RTOS header file
/*your_sha256_hash------------
* Message Queue creation & usage
*your_sha256_hash-----------*/
void Thread_MsgQueue1 (void const *argument); // thread function 1
void Thread_MsgQueue2 (void const ... | /content/code_sandbox/CMSIS/RTOS/RTX/UserCodeTemplates/MsgQueue.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 761 |
```objective-c
/*your_sha256_hash------------
* osObjects.h: CMSIS-RTOS global object definitions for an application
*your_sha256_hash------------
*
* This header file defines global RTOS objects used throughout a project
*
* #define osObjectsPublic indicates that objects are defined; without that
* definition t... | /content/code_sandbox/CMSIS/RTOS/RTX/UserCodeTemplates/osObjects.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 420 |
```c
#include "cmsis_os.h" // CMSIS RTOS header file
/*your_sha256_hash------------
* Thread 1 'Thread_Name': Sample thread
*your_sha256_hash-----------*/
void Thread (void const *argument); // thread function
osThreadId tid_Thread; ... | /content/code_sandbox/CMSIS/RTOS/RTX/UserCodeTemplates/Thread.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 162 |
```c
#include "cmsis_os.h" // CMSIS RTOS header file
/*your_sha256_hash------------
* Semaphore creation & usage
*your_sha256_hash-----------*/
void Thread_Semaphore (void const *argument); // thread function
osThreadId tid_Thread_Semaphore; ... | /content/code_sandbox/CMSIS/RTOS/RTX/UserCodeTemplates/Semaphore.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 349 |
```c
#include "cmsis_os.h" // CMSIS RTOS header file
/*your_sha256_hash------------
* Mail Queue creation & usage
*your_sha256_hash-----------*/
void Thread_MailQueue1 (void const *argument); // thread function 1
void Thread_MailQueue2 (void const *a... | /content/code_sandbox/CMSIS/RTOS/RTX/UserCodeTemplates/MailQueue.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 648 |
```objective-c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 5. December 2022
* $Revision: V2.1.2
*
* Project: CM... | /content/code_sandbox/CMSIS/DAP/Firmware/Include/DAP.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 3,851 |
```objective-c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 16. June 2021
* $Revision: V2.1.0
*
* Project: CMSIS... | /content/code_sandbox/CMSIS/DAP/Firmware/Config/DAP_config.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 4,834 |
```c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 1. December 2017
* $Revision: V2.0.0
*
* Project: CMSIS-DAP So... | /content/code_sandbox/CMSIS/DAP/Firmware/Source/JTAG_DP.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 3,053 |
```unknown
<?xml version="1.0" encoding="UTF-8"?>
<project>
<fileVersion>3</fileVersion>
<configuration>
<name>CM0_LE</name>
<toolchain>
<name>ARM</name>
</toolchain>
<debug>0</debug>
<settings>
<name>General</name>
<archiveVersion>3</a... | /content/code_sandbox/CMSIS/RTOS/RTX/SRC/IAR/RTX_Lib_CM.ewp | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 54,262 |
```c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 1. December 2017
* $Revision: V2.0.0
*
* Project: CMSIS-DAP So... | /content/code_sandbox/CMSIS/DAP/Firmware/Source/DAP_vendor.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 775 |
```c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 1. March 2021
* $Revision: V1.0.0
*
* Project: CMSIS-DAP Sourc... | /content/code_sandbox/CMSIS/DAP/Firmware/Source/UART.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 5,238 |
```c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 29. March 2021
* $Revision: V2.0.1
*
* Project: CMSIS-DAP Sour... | /content/code_sandbox/CMSIS/DAP/Firmware/Source/SWO.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 5,817 |
```c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 5. December 2022
* $Revision: V2.1.2
*
* Project: CMSIS-DAP So... | /content/code_sandbox/CMSIS/DAP/Firmware/Source/DAP.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 15,320 |
```c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 1. December 2017
* $Revision: V2.0.0
*
* Project: CMSIS-DAP So... | /content/code_sandbox/CMSIS/DAP/Firmware/Source/SW_DP.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,254 |
```objective-c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 15. September 2021
* $Revision: V1.0.0
*
* Project: ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/ser_num.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 146 |
```c
/*your_sha256_hash--------------
* MDK Middleware - Component ::USB:Device:CDC
*your_sha256_hash--------------
* Name: USBD_User_CDC_ACM_UART_0.c
* Purpose: USB Device Communication Device Class (CDC)
* Abstract Control Model (ACM) USB <-> UART Bridge User module
* Rev.: V1.0.8
*your_sha256_h... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/USBD_User_CDC_ACM_UART_0.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 3,365 |
```c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 15. September 2021
* $Revision: V1.0.0
*
* Project: CMSIS-DAP ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/ser_num.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 562 |
```objective-c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 15. September 2021
* $Revision: V2.1.0
*
* Project: ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/DAP_config.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 6,585 |
```c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 15. September 2021
* $Revision: V2.0.0
*
* Project: CMSIS-DAP ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/main.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 686 |
```unknown
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<ProjectOpt xmlns:xsi="path_to_url" xsi:noNamespaceSchemaLocation="project_optx.xsd">
<SchemaVersion>1.0</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<Extensions>
<cExt>*.c</cExt>
<aExt>*.s*; *.src; *.a*</aExt... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/CMSIS_DAP.uvoptx | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 5,546 |
```unknown
<?xml version="1.0" encoding= "UTF-8" ?>
<configuration name="MCU-LINK" xsi:schemaLocation="path_to_url path_to_url" uuid="ec487fd8-754b-47b3-bbcd-ee484cc22247" version="1.9" xmlns="path_to_url" xmlns:xsi="path_to_url">
<common>
<processor>LPC55S69</processor>
<package>LPC55S69JBD64</package>
... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/MCU-Link.mex | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 11,670 |
```unknown
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Project xmlns:xsi="path_to_url" xsi:noNamespaceSchemaLocation="project_projx.xsd">
<SchemaVersion>2.1</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<Targets>
<Target>
<TargetName>MCU-LINK</TargetName>
... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/CMSIS_DAP.uvprojx | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 12,480 |
```objective-c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash------
*
* $Date: 15. September 2021
* $Revision: V2.0.0
*
* Project: ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/osObjects.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 283 |
```c
/* your_sha256_hash-------------
*
* This software is provided 'as-is', without any express or implied warranty.
* In no event will the authors be held liable for any damages arising from
* the use of this software. Permission is granted to anyone to use this
* software for any purpose, including commercial a... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/USBD1_LPC55xxx.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 9,365 |
```objective-c
/* your_sha256_hash-------------
*
* This software is provided 'as-is', without any express or implied warranty.
* In no event will the authors be held liable for any damages arising from
* the use of this software. Permission is granted to anyone to use this
* software for any purpose, including co... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/USB_LPC55xxx.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 546 |
```c
/*
* All rights reserved.
*
*/
/*
* Modified by Arm
*/
#define FSL_USART_MODIFIED_BY_ARM 1U
#include "fsl_usart.h"
#include "fsl_device_registers.h"
#include "fsl_flexcomm.h"
/*******************************************************************************
* Definitions
*********************************... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/fsl_usart.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 11,246 |
```c
/*your_sha256_hash--------------
* MDK Middleware - Component ::USB:Device
*your_sha256_hash--------------
* Name: USBD_User_CustomClass_0.c
* Purpose: USB Device Custom Class User module
* Rev.: V6.7.3
*your_sha256_hash------------*/
/*
* USBD_User_CustomClass_0.c is a code template for the Custom Cl... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/USBD_User_CustomClass_0.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 3,341 |
```unknown
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<ProjectGui xmlns:xsi="path_to_url" xsi:noNamespaceSchemaLocation="project_guix.xsd">
<SchemaVersion>-6.1</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<PrjGuiSettings>
<LastAddFilePath>D:\GitHub\ARM-software\CMSIS... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/CMSIS_DAP.uvguix | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 39,473 |
```unknown
// <<< Use Configuration Wizard in Context Menu >>>
// <o0> SWO pin
// <i> The SWO (Serial Wire Output) pin optionally provides data from the ITM
// <i> for an external debug tool to evaluate.
// <0=> PIO0_10
// <1=> PIO0_8
SWO_Pin = 0;
//
// <h>Debug Configuration
// <o.0> StopAfterBootloa... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/DebugConfig/MCU-Link_LPC55S69JBD64_cm33_core0.dbgconf | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 133 |
```objective-c
/***********************************************************************************************************************
* This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file
* will be overwritten if the respective MCUXpresso Config Tools is used to update this fi... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/board/clock_config.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 300 |
```c
/***********************************************************************************************************************
* This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file
* will be overwritten if the respective MCUXpresso Config Tools is used to update this file.
*****... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/board/peripherals.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 527 |
```c
/***********************************************************************************************************************
* This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file
* will be overwritten if the respective MCUXpresso Config Tools is used to update this file.
*****... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/board/pin_mux.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 4,827 |
```objective-c
/***********************************************************************************************************************
* This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file
* will be overwritten if the respective MCUXpresso Config Tools is used to update this fi... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/board/pin_mux.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,590 |
```objective-c
/***********************************************************************************************************************
* This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file
* will be overwritten if the respective MCUXpresso Config Tools is used to update this fi... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/board/peripherals.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 149 |
```c
/***********************************************************************************************************************
* This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file
* will be overwritten if the respective MCUXpresso Config Tools is used to update this file.
*****... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/board/clock_config.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,886 |
```c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash-------------
*
* $Revision: V5.1.1
*
* Project: CMSIS-RTOS RTX
* Title: RTX Config... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/RTE/CMSIS/RTX_Config.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 345 |
```objective-c
/*
*
*
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* your_sha256_hash-------------
*
* $Revision: V5.5.2
*
* Project: CMSIS-RTOS RTX
* Title: ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/RTE/CMSIS/RTX_Config.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 4,298 |
```unknown
#!armclang --target=arm-arm-none-eabi -march=armv8-m.main -E -x c
/*
** ###################################################################
** Processors: LPC55S69JBD100_cm33_core0
** LPC55S69JBD64_cm33_core0
** LPC55S69JEV98_cm33_core0
**
** ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/RTE/Device/LPC55S69JBD64_cm33_core0/LPC55S69_cm33_core0_flash_s.scf | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 969 |
```unknown
#!armclang --target=arm-arm-none-eabi -march=armv8-m.main -E -x c
/*
** ###################################################################
** Processors: LPC55S69JBD100_cm33_core0
** LPC55S69JBD64_cm33_core0
** LPC55S69JEV98_cm33_core0
**
** ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/RTE/Device/LPC55S69JBD64_cm33_core0/LPC55S69_cm33_core0_flash_ns.scf | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 895 |
```unknown
#!armclang --target=arm-arm-none-eabi -march=armv8-m.main -E -x c
/*
** ###################################################################
** Processors: LPC55S69JBD100_cm33_core0
** LPC55S69JBD64_cm33_core0
** LPC55S69JEV98_cm33_core0
**
** ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/RTE/Device/LPC55S69JBD64_cm33_core0/LPC55S69_cm33_core0_ram.scf | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 841 |
```objective-c
/*
* All rights reserved.
*
*/
#ifndef _RTE_DEVICE_H
#define _RTE_DEVICE_H
#include "pin_mux.h"
/* UART Select, UART0-UART7. */
/* User needs to provide the implementation of USARTX_GetFreq/USARTX_InitPins/USARTX_DeinitPins for the enabled USART
* instance. */
#define RTE_USART0 1
#define R... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/RTE/Device/LPC55S69JBD64_cm33_core0/RTE_Device.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 1,950 |
```unknown
#!armclang --target=arm-arm-none-eabi -march=armv8-m.main -E -x c
/*
** ###################################################################
** Processors: LPC55S69JBD100_cm33_core0
** LPC55S69JBD64_cm33_core0
** LPC55S69JEV98_cm33_core0
**
** ... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/RTE/Device/LPC55S69JBD64_cm33_core0/LPC55S69_cm33_core0_flash.scf | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 840 |
```unknown
/* your_sha256_hash-----------------------
* @file: startup_LPC55S69_cm33_core0.s
* @purpose: CMSIS Cortex-M33 Core Device Startup File for the LPC55S69_cm33_core0
* @version: 1.1
* @date: 2019-5-16
* your_sha256_hash-----------------------*/
/*
* All rights reserved.
*
*/
/********************... | /content/code_sandbox/CMSIS/DAP/Firmware/Examples/MCU-LINK/RTE/Device/LPC55S69JBD64_cm33_core0/startup_LPC55S69_cm33_core0.S | unknown | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 7,847 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.