code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
#!/usr/bin/python import math class Table(object): def __init__(self, table_entry=256, table_range=8): self.table_entry = table_entry self.table_range = table_range pass def sigmoid(self, x): return 1 / (1 + math.exp(-1*x)) def tanh(self, x): return (math.exp(2*x)-1) / (math.exp(2*x)+1)...
YifuLiu/AliOS-Things
components/cmsis/NN/Scripts/NNFunctions/table_gen.py
Python
apache-2.0
4,267
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ActivationFunctions/arm_nn_activations_q15.c
C
apache-2.0
2,930
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ActivationFunctions/arm_nn_activations_q7.c
C
apache-2.0
2,541
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ActivationFunctions/arm_relu_q15.c
C
apache-2.0
2,364
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ActivationFunctions/arm_relu_q7.c
C
apache-2.0
2,386
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_convolve_1x1_HWC_q7_fast_nonsquare.c
C
apache-2.0
9,139
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q15_basic.c
C
apache-2.0
7,528
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q15_fast.c
C
apache-2.0
9,665
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q15_fast_nonsquare.c
C
apache-2.0
10,545
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_RGB.c
C
apache-2.0
10,247
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_basic.c
C
apache-2.0
8,242
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_basic_nonsquare.c
C
apache-2.0
9,042
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_fast.c
C
apache-2.0
16,068
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_fast_nonsquare.c
C
apache-2.0
15,236
/* * Copyright (C) 2010-2019 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_depthwise_conv_u8_basic_ver1.c
C
apache-2.0
10,503
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_depthwise_separable_conv_HWC_q7.c
C
apache-2.0
16,928
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_depthwise_separable_conv_HWC_q7_nonsquare.c
C
apache-2.0
17,558
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_nn_mat_mult_kernel_q7_q15.c
C
apache-2.0
6,408
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/ConvolutionFunctions/arm_nn_mat_mult_kernel_q7_q15_reordered.c
C
apache-2.0
5,149
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/FullyConnectedFunctions/arm_fully_connected_mat_q7_vec_q15.c
C
apache-2.0
5,649
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/FullyConnectedFunctions/arm_fully_connected_mat_q7_vec_q15_opt.c
C
apache-2.0
12,277
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/FullyConnectedFunctions/arm_fully_connected_q15.c
C
apache-2.0
5,405
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/FullyConnectedFunctions/arm_fully_connected_q15_opt.c
C
apache-2.0
9,516
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/FullyConnectedFunctions/arm_fully_connected_q7.c
C
apache-2.0
5,581
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/FullyConnectedFunctions/arm_fully_connected_q7_opt.c
C
apache-2.0
15,406
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/NNSupportFunctions/arm_nn_mult_q15.c
C
apache-2.0
4,493
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/NNSupportFunctions/arm_nn_mult_q7.c
C
apache-2.0
3,751
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/NNSupportFunctions/arm_nntables.c
C
apache-2.0
15,539
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/NNSupportFunctions/arm_q7_to_q15_no_shift.c
C
apache-2.0
3,658
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/NNSupportFunctions/arm_q7_to_q15_reordered_no_shift.c
C
apache-2.0
4,137
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/PoolingFunctions/arm_pool_q7_HWC.c
C
apache-2.0
13,708
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/SoftmaxFunctions/arm_softmax_q15.c
C
apache-2.0
3,060
/* * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache....
YifuLiu/AliOS-Things
components/cmsis/NN/Source/SoftmaxFunctions/arm_softmax_q7.c
C
apache-2.0
3,111
/* ---------------------------------------------------------------------- * $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 featu...
YifuLiu/AliOS-Things
components/cmsis/RTOS/Template/cmsis_os.h
C
apache-2.0
36,172
/* * Copyright (c) 2013-2018 Arm Limited. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache.org/licenses/LICEN...
YifuLiu/AliOS-Things
components/cmsis/RTOS2/Include/cmsis_os2.h
C
apache-2.0
35,974
/**************************************************************************//** * @file os_tick.h * @brief CMSIS OS Tick header file * @version V1.0.1 * @date 24. November 2017 ******************************************************************************/ /* * Copyright (c) 2017-2017 ARM Limited. All...
YifuLiu/AliOS-Things
components/cmsis/RTOS2/Include/os_tick.h
C
apache-2.0
2,218
/**************************************************************************//** * @file os_systick.c * @brief CMSIS OS Tick SysTick implementation * @version V1.0.1 * @date 24. November 2017 ******************************************************************************/ /* * Copyright (c) 2017-2017 AR...
YifuLiu/AliOS-Things
components/cmsis/RTOS2/Source/os_systick.c
C
apache-2.0
3,541
/**************************************************************************//** * @file os_tick_gtim.c * @brief CMSIS OS Tick implementation for Generic Timer * @version V1.0.1 * @date 24. November 2017 ******************************************************************************/ /* * Copyright (c) ...
YifuLiu/AliOS-Things
components/cmsis/RTOS2/Source/os_tick_gtim.c
C
apache-2.0
4,282
/**************************************************************************//** * @file os_tick_ptim.c * @brief CMSIS OS Tick implementation for Private Timer * @version V1.0.2 * @date 02. March 2018 ******************************************************************************/ /* * Copyright (c) 201...
YifuLiu/AliOS-Things
components/cmsis/RTOS2/Source/os_tick_ptim.c
C
apache-2.0
3,900
/* * Copyright (c) 2013-2018 Arm Limited. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache.org/licenses/LICEN...
YifuLiu/AliOS-Things
components/cmsis/RTOS2/Template/cmsis_os.h
C
apache-2.0
40,078
/* * Copyright (c) 2013-2017 ARM Limited. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache.org/licenses/LICEN...
YifuLiu/AliOS-Things
components/cmsis/RTOS2/Template/cmsis_os1.c
C
apache-2.0
8,700
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Data Structures</ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/annotated.html
HTML
apache-2.0
11,185
var annotated = [ [ "APSR_Type", "unionAPSR__Type.html", "unionAPSR__Type" ], [ "ARM_MPU_Region_t", "structARM__MPU__Region__t.html", "structARM__MPU__Region__t" ], [ "CONTROL_Type", "unionCONTROL__Type.html", "unionCONTROL__Type" ], [ "CoreDebug_Type", "structCoreDebug__Type.html", "structCoreDebug__Ty...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/annotated.js
JavaScript
apache-2.0
1,047
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Data Structure Inde...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/classes.html
HTML
apache-2.0
10,834
/* The standard CSS for doxygen */ body, table, div, p, dl { font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif; font-size: 13px; line-height: 1.3; } /* CMSIS styles */ .style1 { text-align: center; } .style2 { color: #0000FF; font-weight: normal; } .style3 { text-align: left; } .style4 { co...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/cmsis.css
CSS
apache-2.0
20,795
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>MISRA-C Deviations<...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/coreMISRA_Exceptions_pg.html
HTML
apache-2.0
6,182
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Revision History of...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/core_revisionHistory.html
HTML
apache-2.0
19,402
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Deprecated List</ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/deprecated.html
HTML
apache-2.0
6,571
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Device Header File ...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/device_h_pg.html
HTML
apache-2.0
48,942
/* The standard CSS for doxygen 1.8.6 */ body, table, div, p, dl { font: 400 14px/22px Roboto,sans-serif; } /* @group Heading Levels */ h1.groupheader { font-size: 150%; } .title { font: 400 14px/28px Roboto,sans-serif; font-size: 150%; font-weight: bold; margin: 10px 2px; } h2.groupheader { border-bottom: ...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/doxygen.css
CSS
apache-2.0
23,935
function toggleVisibility(linkObj) { var base = $(linkObj).attr('id'); var summary = $('#'+base+'-summary'); var content = $('#'+base+'-content'); var trigger = $('#'+base+'-trigger'); var src=$(trigger).attr('src'); if (content.is(':visible')===true) { content.hide(); summary.show(); $(linkObj).addClass...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/dynsections.js
JavaScript
apache-2.0
2,983
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Data Fields</title>...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/functions.html
HTML
apache-2.0
26,426
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Data Fields - Varia...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/functions_vars.html
HTML
apache-2.0
26,335
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals.html
HTML
apache-2.0
32,376
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_a.html
HTML
apache-2.0
13,239
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_b.html
HTML
apache-2.0
7,700
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_c.html
HTML
apache-2.0
7,798
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_d.html
HTML
apache-2.0
7,704
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_defs.html
HTML
apache-2.0
14,684
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_enum.html
HTML
apache-2.0
6,448
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_eval.html
HTML
apache-2.0
8,198
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_func.html
HTML
apache-2.0
26,786
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_func_a.html
HTML
apache-2.0
9,886
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_func_i.html
HTML
apache-2.0
7,298
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_func_n.html
HTML
apache-2.0
9,318
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_func_s.html
HTML
apache-2.0
9,024
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_func_t.html
HTML
apache-2.0
9,986
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_h.html
HTML
apache-2.0
7,701
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_i.html
HTML
apache-2.0
8,176
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_m.html
HTML
apache-2.0
7,708
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_n.html
HTML
apache-2.0
10,114
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_p.html
HTML
apache-2.0
7,851
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_s.html
HTML
apache-2.0
10,262
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_t.html
HTML
apache-2.0
10,622
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_u.html
HTML
apache-2.0
7,702
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_vars.html
HTML
apache-2.0
6,598
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Globals</title> <ti...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/globals_w.html
HTML
apache-2.0
7,700
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Core Register Acces...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__Core__Register__gr.html
HTML
apache-2.0
72,674
var group__Core__Register__gr = [ [ "__disable_fault_irq", "group__Core__Register__gr.html#ga9d174f979b2f76fdb3228a9b338fd939", null ], [ "__disable_irq", "group__Core__Register__gr.html#gaeb8e5f7564a8ea23678fe3c987b04013", null ], [ "__enable_fault_irq", "group__Core__Register__gr.html#ga6575d37863cec5d334...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__Core__Register__gr.js
JavaScript
apache-2.0
2,620
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>D-Cache Functions</...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__Dcache__functions__m7.html
HTML
apache-2.0
20,372
var group__Dcache__functions__m7 = [ [ "SCB_CleanDCache", "group__Dcache__functions__m7.html#ga55583e3065c6eabca204b8b89b121c4c", null ], [ "SCB_CleanDCache_by_Addr", "group__Dcache__functions__m7.html#ga696fadbf7b9cc71dad42fab61873a40d", null ], [ "SCB_CleanInvalidateDCache", "group__Dcache__functions__m7....
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__Dcache__functions__m7.js
JavaScript
apache-2.0
935
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Debug Access</title...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__ITM__Debug__gr.html
HTML
apache-2.0
15,497
var group__ITM__Debug__gr = [ [ "ITM_CheckChar", "group__ITM__Debug__gr.html#ga7f9bbabd9756d1a7eafb2d9bf27e0535", null ], [ "ITM_ReceiveChar", "group__ITM__Debug__gr.html#ga37b8f41cae703b5ff6947e271065558c", null ], [ "ITM_SendChar", "group__ITM__Debug__gr.html#gaaa7c716331f74d644bf6bf25cd3392d1", null ], ...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__ITM__Debug__gr.js
JavaScript
apache-2.0
415
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>I-Cache Functions</...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__Icache__functions__m7.html
HTML
apache-2.0
11,296
var group__Icache__functions__m7 = [ [ "SCB_DisableICache", "group__Icache__functions__m7.html#gaba757390852f95b3ac2d8638c717d8d8", null ], [ "SCB_EnableICache", "group__Icache__functions__m7.html#gaf9e7c6c8e16ada1f95e5bf5a03505b68", null ], [ "SCB_InvalidateICache", "group__Icache__functions__m7.html#ga50d...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__Icache__functions__m7.js
JavaScript
apache-2.0
361
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Interrupts and Exce...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__NVIC__gr.html
HTML
apache-2.0
81,429
var group__NVIC__gr = [ [ "CMSIS_NVIC_VIRTUAL", "group__NVIC__gr.html#gadc48b4ed09386aab48fa6b9c96d9034c", null ], [ "CMSIS_VECTAB_VIRTUAL", "group__NVIC__gr.html#gad01d3aa220b50ef141b06c93888b268d", null ], [ "IRQn_Type", "group__NVIC__gr.html#ga7e1129cd8a196f4284d41db3e82ad5c8", [ [ "NonMaskableInt_...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__NVIC__gr.js
JavaScript
apache-2.0
3,635
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Systick Timer (SYST...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__SysTick__gr.html
HTML
apache-2.0
10,684
var group__SysTick__gr = [ [ "SysTick_Config", "group__SysTick__gr.html#gabe47de40e9b0ad465b752297a9d9f427", null ] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__SysTick__gr.js
JavaScript
apache-2.0
122
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Cache Functions (o...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__cache__functions__m7.html
HTML
apache-2.0
8,242
var group__cache__functions__m7 = [ [ "I-Cache Functions", "group__Icache__functions__m7.html", "group__Icache__functions__m7" ], [ "D-Cache Functions", "group__Dcache__functions__m7.html", "group__Dcache__functions__m7" ] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__cache__functions__m7.js
JavaScript
apache-2.0
233
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Compiler Control</t...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__compiler__conntrol__gr.html
HTML
apache-2.0
50,652
var group__compiler__conntrol__gr = [ [ "__ALIGNED", "group__compiler__conntrol__gr.html#ga0c58caa5a273e2c21924509a45f8b849", null ], [ "__ARM_ARCH_6M__", "group__compiler__conntrol__gr.html#ga8be4ebde5d4dd91b161d206545ce59aa", null ], [ "__ARM_ARCH_7EM__", "group__compiler__conntrol__gr.html#ga43ab3e79ec5e...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__compiler__conntrol__gr.js
JavaScript
apache-2.0
2,903
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>RTOS Context Manage...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__context__trustzone__functions.html
HTML
apache-2.0
15,919
var group__context__trustzone__functions = [ [ "TZ_AllocModuleContext_S", "group__context__trustzone__functions.html#gacd016f166bee549a0d3e970132e64a90", null ], [ "TZ_FreeModuleContext_S", "group__context__trustzone__functions.html#gac84f678fbe974f8b02c683e0b8046524", null ], [ "TZ_InitContextSystem_S", "g...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__context__trustzone__functions.js
JavaScript
apache-2.0
636
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Core Register Acces...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__coreregister__trustzone__functions.html
HTML
apache-2.0
33,408
var group__coreregister__trustzone__functions = [ [ "__TZ_get_BASEPRI_NS", "group__coreregister__trustzone__functions.html#ga624509c924d2583f0d4dca6ab270f051", null ], [ "__TZ_get_CONTROL_NS", "group__coreregister__trustzone__functions.html#ga27bf1f88e794c30808ee73a29d46e358", null ], [ "__TZ_get_FAULTMASK_...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__coreregister__trustzone__functions.js
JavaScript
apache-2.0
2,221
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>FPU Functions</titl...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__fpu__functions.html
HTML
apache-2.0
8,196
var group__fpu__functions = [ [ "SCB_GetFPUType", "group__fpu__functions.html#ga6bcad99ce80a0e7e4ddc6f2379081756", null ] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__fpu__functions.js
JavaScript
apache-2.0
128
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Intrinsic Functions...
YifuLiu/AliOS-Things
components/cmsis/docs/Core/html/group__intrinsic__CPU__gr.html
HTML
apache-2.0
72,641