text stringlengths 9 39.2M | dir stringlengths 26 295 | lang stringclasses 185
values | created_date timestamp[us] | updated_date timestamp[us] | repo_name stringlengths 1 97 | repo_full_name stringlengths 7 106 | star int64 1k 183k | len_tokens int64 1 13.8M |
|---|---|---|---|---|---|---|---|---|
```php
<?php
/*
Plugin Name: 91yun serverspeeder
Plugin URI:
Description: serverspeeder
Version: 0.0.1
Author: 91yun
Author URI:
Text Domain: 91yun.org
*/
//require_once("ss.php");
//echo var_dump($ss);
//exit;
class serverspeeder91yun{
//
function __construct() {
//
register_activation_hook( __FILE__... | /content/code_sandbox/91yun-serverspeeder.php | php | 2016-03-11T18:31:52 | 2024-08-15T10:09:17 | serverspeeder | 91yun/serverspeeder | 2,919 | 372 |
```shell
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
export PATH
#
#url
APX=path_to_url
#
INSTALLPACK=path_to_url
#
CHECKSYSTEM=path_to_url
#bin
BINURL=path_to_url
#
Get_Dist_Name()
{
if grep -Eqi "CentOS" /etc/issue || grep -Eq "CentOS" /etc/*-release; then
release='C... | /content/code_sandbox/serverspeeder.sh | shell | 2016-03-11T18:31:52 | 2024-08-15T10:09:17 | serverspeeder | 91yun/serverspeeder | 2,919 | 1,781 |
```php
<?php
if(!empty($_GET["release"])){
$release = $_GET["release"];
$releasever = $_GET["releasever"];
$kernel_result = $_GET["kernel_result"];
$bit = $_GET["bit"];
$serverspeederver = $_GET["serverspeederver"];
$binfile = $_GET["binfile"];
echo '';
echo '<br>';
echo '<pre class="lang:sh decode:true " styl... | /content/code_sandbox/serverspeederlist.php | php | 2016-03-11T18:31:52 | 2024-08-15T10:09:17 | serverspeeder | 91yun/serverspeeder | 2,919 | 382 |
```shell
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
export PATH
#
#url
APX=path_to_url
#
INSTALLPACK=path_to_url
#
CHECKSYSTEM=path_to_url
#bin
BINURL=path_to_url
#
Get_Dist_Name()
{
if grep -Eqi "CentOS" /etc/issue || grep -Eq "CentOS" /etc/*-release; then
release='C... | /content/code_sandbox/serverspeeder-v.sh | shell | 2016-03-11T18:31:52 | 2024-08-15T10:09:17 | serverspeeder | 91yun/serverspeeder | 2,919 | 972 |
```shell
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
export PATH
#
#url
APX=path_to_url
#
INSTALLPACK=path_to_url
#
CHECKSYSTEM=path_to_url
#bin
BIN=downloadurl
#
Get_Dist_Name()
{
if grep -Eqi "CentOS" /etc/issue || grep -Eq "CentOS" /etc/*-release; then
DISTRO='CentO... | /content/code_sandbox/serverspeeder-all.sh | shell | 2016-03-11T18:31:52 | 2024-08-15T10:09:17 | serverspeeder | 91yun/serverspeeder | 2,919 | 2,668 |
```python
# -*- coding: utf-8 -*-
import logging
import lxml
import os
import os.path
import re
import requests
from AdvancedHTMLParser import AdvancedHTMLParser
from glob import iglob
from urllib.parse import urlparse
from cmsis.PackLint import PackLinter, VersionParser
from cmsis.Pack import Pack, Api, SemanticVer... | /content/code_sandbox/linter.py | python | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 3,617 |
```c
/* your_sha256_hash------
*
* $Date: 30. November 2011
* $Revision: V0.02
*
* Project: CMSIS-RTOS API
* Title: os_sample.c
*
* Description: This file shows the usage of the CMSIS-RTOS API.
*
*
* Version 0.02
* Initial Proposal Phase
* your_sha256_hash---- */
#inclu... | /content/code_sandbox/CMSIS/RTOS/Template/os_sample.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 557 |
```objective-c
/* your_sha256_hash------
* $Date: 5. February 2013
* $Revision: V1.02
*
* Project: CMSIS-RTOS API
* Title: cmsis_os.h template header file
*
* Version 0.02
* Initial Proposal Phase
* Version 0.03
* osKernelStart added, optional feature: main started as thread
* ... | /content/code_sandbox/CMSIS/RTOS/Template/cmsis_os.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 8,593 |
```c
/* your_sha256_hash------
*
* $Date: 30. November 2011
* $Revision: V0.02
*
* Project: CMSIS-RTOS API
* Title: os_sample1.c
*
* Description: This file shows the usage of the CMSIS-RTOS API.
*
* Version 0.02
* Initial Proposal Phase
* your_sha256_hash---- */
#define o... | /content/code_sandbox/CMSIS/RTOS/Template/os_sample1.c | c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 230 |
```objective-c
#include "cmsis_os.h" // CMSIS RTOS header file
extern void thread_sample (void const *argument); // prototype
typedef struct a {
char y[100];
} a_element;
osThreadDef (thread_sample, osPriorityBelowNormal, 2, 100);
osPoolDef(MyPool, 10, struct a);
osMessageQDef(M... | /content/code_sandbox/CMSIS/RTOS/Template/my_objects.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 103 |
```gas
;/*****************************************************************************
; * @file: startup_LPC177x_8x.s
; * @purpose: CMSIS Cortex-M3 Core Device Startup File
; * for the NXP LPC177x_8x Device Series
; * @version: V1.20
; * @date: 07. October 2010
; *------- <<< Use Configuration Wizard ... | /content/code_sandbox/CMSIS/RTOS/Template/startup_LPC177x_8x.s | gas | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 2,442 |
```objective-c
#ifndef MEMORYPOOL_H
#define MEMORYPOOL_H
#include <stdint.h>
#include <string.h>
#include "cmsis_os.h"
namespace rtos {
/*! Define and manage fixed-size memory pools of objects of a given type.
\tparam T data type of a single object (element).
\tparam queue_sz maximum number of objec... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/MemoryPool.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 439 |
```c++
#include "RtosTimer.h"
#include <string.h>
#include "cmsis_os.h"
//#include "error.h"
namespace rtos {
RtosTimer::RtosTimer(void (*periodic_task)(void const *argument), os_timer_type type, void *argument) {
#ifdef CMSIS_OS_RTX
_timer.ptimer = periodic_task;
memset(_timer_data, 0, sizeof(_timer_d... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/RtosTimer.cpp | c++ | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 164 |
```objective-c
#ifndef MAIL_H
#define MAIL_H
#include <stdint.h>
#include <string.h>
#include "cmsis_os.h"
namespace rtos {
/*! The Mail class allow to control, send, receive, or wait for mail.
A mail is a memory block that is send to a thread or interrupt service routine.
\tparam T data type of a sing... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/Mail.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 729 |
```objective-c
#ifndef THREAD_H
#define THREAD_H
#include <stdint.h>
#include "cmsis_os.h"
#define DEFAULT_STACK_SIZE 0x1000
namespace rtos {
/*! The Thread class allow defining, creating, and controlling thread functions in the system. */
class Thread {
public:
/*! Create a new thread, and start it executing ... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/Thread.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 632 |
```objective-c
/* mbed Microcontroller Library
*/
#ifndef RTOS_H
#define RTOS_H
#include "Thread.h"
#include "Mutex.h"
#include "RtosTimer.h"
#include "Semaphore.h"
#include "Mail.h"
#include "MemoryPool.h"
#include "Queue.h"
using namespace rtos;
#endif
``` | /content/code_sandbox/CMSIS/RTOS/Template/CPP/rtos.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 64 |
```objective-c
#ifndef QUEUE_H
#define QUEUE_H
#include <stdint.h>
#include <string.h>
#include "cmsis_os.h"
#include "error.h"
namespace rtos {
/*! The Queue class allow to control, send, receive, or wait for messages.
A message can be a integer or pointer value to a certain type T that is send
to a thread or ... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/Queue.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 456 |
```objective-c
#ifndef TIMER_H
#define TIMER_H
#include <stdint.h>
#include "cmsis_os.h"
namespace rtos {
/*! The RtosTimer class allow creating and and controlling of timer functions in the system.
A timer function is called when a time period expires whereby both on-shot and
periodic timers are possible. A time... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/RtosTimer.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 334 |
```objective-c
#ifndef SEMAPHORE_H
#define SEMAPHORE_H
#include <stdint.h>
#include "cmsis_os.h"
namespace rtos {
/*! The Semaphore class is used to manage and protect access to a set of shared resources. */
class Semaphore {
public:
/*! Create and Initialize a Semaphore object used for managing resources.
... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/Semaphore.h | objective-c | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 249 |
```c++
#include "Thread.h"
namespace rtos {
Thread::Thread(void (*task)(void const *argument),
void *argument,
osPriority priority,
uint32_t stacksize) {
// The actual fields of os_thread_def are implementation specific in every CMSIS-RTOS
#ifdef CMSIS_OS_RTX
_thre... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/Thread.cpp | c++ | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 283 |
```c++
#include "Mutex.h"
#include <string.h>
//#include "error.h"
namespace rtos {
Mutex::Mutex() {
#ifdef CMSIS_OS_RTX
memset(_mutex_data, 0, sizeof(_mutex_data));
_osMutexDef.mutex = _mutex_data;
#endif
_osMutexId = osMutexCreate(&_osMutexDef);
if (_osMutexId == NULL) {
// error("Error init... | /content/code_sandbox/CMSIS/RTOS/Template/CPP/Mutex.cpp | c++ | 2016-02-18T08:04:18 | 2024-08-16T08:24:23 | CMSIS_5 | ARM-software/CMSIS_5 | 1,295 | 169 |
```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 |
```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 |
```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 |
```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 |
```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 |
```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 |
```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 |
```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 |
```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 |
```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 |
```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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.