/nrf52832-nimble/rt-thread/components/ |
H A D | Kconfig | 24 source "$RTT_DIR/components/cplusplus/Kconfig" 26 source "$RTT_DIR/components/finsh/Kconfig" 28 source "$RTT_DIR/components/dfs/Kconfig" 30 source "$RTT_DIR/components/drivers/Kconfig" 32 source "$RTT_DIR/components/libc/Kconfig" 34 source "$RTT_DIR/components/net/Kconfig" 36 source "$RTT_DIR/components/vbus/Kconfig" 38 source "$RTT_DIR/components/utilities/Kconfig" 40 source "$RTT_DIR/components/CMSIS/Kconfig" 42 source "$RTT_DIR/components/lwp/Kconfig"
|
/nrf52832-nimble/rt-thread/libcpu/risc-v/common/ |
H A D | riscv-plic.h | 18 /* Priority Register - 32 bits per source */ 54 __attribute__((always_inline)) static inline void __plic_set_priority(unsigned int source, unsigned… in __plic_set_priority() argument 58 … (source << PLIC_PRIORITY_SHIFT_PER_SOURCE)); in __plic_set_priority() 62 __attribute__((always_inline)) static inline void __plic_set_pending(unsigned int source) in __plic_set_pending() argument 66 ((source >> 5) << 2)); in __plic_set_pending() 67 *current_ptr = (1 << (source & 0x1F)); in __plic_set_pending() 70 __attribute__((always_inline)) static inline void __plic_irq_enable(unsigned int source) in __plic_irq_enable() argument 76 ((source >> 5) << 2)); in __plic_irq_enable() 78 current = current | (1 << (source & 0x1F)); in __plic_irq_enable() 82 __attribute__((always_inline)) static inline void __plic_irq_disable(unsigned int source) in __plic_irq_disable() argument [all …]
|
/nrf52832-nimble/rt-thread/examples/ulog/ |
H A D | ulog_example.c | 34 LOG_D("LOG_D(%d): RT-Thread is an open source IoT operating system from China.", count); in ulog_example() 35 LOG_I("LOG_I(%d): RT-Thread is an open source IoT operating system from China.", count); in ulog_example() 36 LOG_W("LOG_W(%d): RT-Thread is an open source IoT operating system from China.", count); in ulog_example() 37 LOG_E("LOG_E(%d): RT-Thread is an open source IoT operating system from China.", count); in ulog_example() 38 … ulog_d("test", "ulog_d(%d): RT-Thread is an open source IoT operating system from China.", count); in ulog_example() 39 … ulog_i("test", "ulog_i(%d): RT-Thread is an open source IoT operating system from China.", count); in ulog_example() 40 … ulog_w("test", "ulog_w(%d): RT-Thread is an open source IoT operating system from China.", count); in ulog_example() 41 … ulog_e("test", "ulog_e(%d): RT-Thread is an open source IoT operating system from China.", count); in ulog_example() 69 …syslog(LOG_INFO, "syslog(%d) LOG_INFO: RT-Thread is an open source IoT operating system from China… in ulog_example() 70 …syslog(LOG_DEBUG, "syslog(%d) LOG_DEBUG: RT-Thread is an open source IoT operating system from Chi… in ulog_example() [all …]
|
/nrf52832-nimble/nordic/nrfx/hal/ |
H A D | nrf_clock.h | 5 * Redistribution and use in source and binary forms, with or without 8 * 1. Redistributions of source code must retain the above copyright notice, this 156 …LOCK_TASK_HFCLKSTART = offsetof(NRF_CLOCK_Type, TASKS_HFCLKSTART), /**< Start HFCLK clock source.*/ 157 …CLOCK_TASK_HFCLKSTOP = offsetof(NRF_CLOCK_Type, TASKS_HFCLKSTOP), /**< Stop HFCLK clock source.*/ 158 …LOCK_TASK_LFCLKSTART = offsetof(NRF_CLOCK_Type, TASKS_LFCLKSTART), /**< Start LFCLK clock source.*/ 159 …CLOCK_TASK_LFCLKSTOP = offsetof(NRF_CLOCK_Type, TASKS_LFCLKSTOP), /**< Stop LFCLK clock source.*/ 249 * @brief Function for changing the low-frequency clock source. 252 * @param[in] source New low-frequency clock source. 254 __STATIC_INLINE void nrf_clock_lf_src_set(nrf_clock_lfclk_t source); 257 * @brief Function for retrieving the selected source for the low-frequency clock. [all …]
|
H A D | nrf_comp.h | 5 * Redistribution and use in source and binary forms, with or without 8 * 1. Redistributions of source code must retain the above copyright notice, this 134 * @brief COMP current source selection on analog input. 138 NRF_COMP_ISOURCE_Off = COMP_ISOURCE_ISOURCE_Off, /*!< Current source disabled. */ 139 …NRF_COMP_ISOURCE_Ien2uA5 = COMP_ISOURCE_ISOURCE_Ien2mA5, /*!< Current source enabled (+/- 2.5 u… 140 …NRF_COMP_ISOURCE_Ien5uA = COMP_ISOURCE_ISOURCE_Ien5mA, /*!< Current source enabled (+/- 5 uA)… 141 …NRF_COMP_ISOURCE_Ien10uA = COMP_ISOURCE_ISOURCE_Ien10mA /*!< Current source enabled (+/- 10 uA… 203 * @brief Function for setting the reference source. 211 * @brief Function for setting the external analog reference source. 252 * @brief Function for setting the current source on the analog input. [all …]
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/ |
H A D | compress.c | 16 Compresses the source buffer into the destination buffer. The level 18 length of the source buffer. Upon entry, destLen is the total size of the 26 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) in compress2() argument 29 const Bytef *source; 36 stream.next_in = (Bytef*)source; 39 /* Check for source > 64K on 16-bit machine: */ 66 int ZEXPORT compress (dest, destLen, source, sourceLen) in compress() argument 69 const Bytef *source; 72 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
|
H A D | uncompr.c | 16 Decompresses the source buffer into the destination buffer. sourceLen is 17 the byte length of the source buffer. Upon entry, destLen is the total 30 int ZEXPORT uncompress (dest, destLen, source, sourceLen) in uncompress() argument 33 const Bytef *source; 39 stream.next_in = (Bytef*)source; 41 /* Check for source > 64K on 16-bit machine: */
|
/nrf52832-nimble/packages/NimBLE-latest/docs/ble_setup/ |
H A D | ble_lp_clock.rst | 24 - OS cputime timer source shall be set to 32768 Hz clock source 25 - Default 1 MHz clock source can be disabled if not used by application 26 - 32768 Hz clock source shall be enabled 29 For example, on nRF52 platform timer 5 can be used as source for 32768 30 Hz clock. Also, timer 0 can be disabled since this is the default source 54 controller to turn on the necessary clock source(s) for the radio and
|
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/ |
H A D | COPYING | 3 source tree, which is covered by the GPLv2 only. As Linus Torvalds puts it: 10 understanding that the whole Linux kernel source tree is covered by this 11 sentence, even non-kernel source code. As such, the license that applies 41 this service if you wish), that you receive source code or can get it 53 source code. And you must show them these terms so they know their 97 source code as you receive it, in any medium, provided that you 156 source code, which must be distributed under the terms of Sections 161 cost of physically performing source distribution, a complete 162 machine-readable copy of the corresponding source code, to be 167 to distribute corresponding source code. (This alternative is [all …]
|
/nrf52832-nimble/rt-thread/ |
H A D | LICENSE | 26 "Source" form shall mean the preferred form for making modifications, 27 including but not limited to software source code, documentation 28 source, and configuration files. 31 transformation or translation of a Source form, including but 35 "Work" shall mean the work of authorship, whether in Source or 40 "Derivative Works" shall mean any work, whether in Source or Object 56 communication on electronic mailing lists, source code control systems, 71 Work and such Derivative Works in Source or Object form. 91 modifications, and in Source or Object form, provided that You 100 (c) You must retain, in the Source form of any Derivative Works [all …]
|
H A D | Kconfig | 1 source "$RTT_DIR/src/Kconfig" 2 source "$RTT_DIR/libcpu/Kconfig" 3 source "$RTT_DIR/components/Kconfig"
|
/nrf52832-nimble/packages/NimBLE-latest/ |
H A D | LICENSE | 26 "Source" form shall mean the preferred form for making modifications, 27 including but not limited to software source code, documentation 28 source, and configuration files. 31 transformation or translation of a Source form, including but 35 "Work" shall mean the work of authorship, whether in Source or 40 "Derivative Works" shall mean any work, whether in Source or Object 56 communication on electronic mailing lists, source code control systems, 71 Work and such Derivative Works in Source or Object form. 91 modifications, and in Source or Object form, provided that You 100 (c) You must retain, in the Source form of any Derivative Works [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/ipv6/ |
H A D | ip6.c | 11 * Redistribution and use in source and binary forms, with or without modification, 14 * 1. Redistributions of source code must retain the above copyright notice, 72 * 3) if the either the source or destination address is a scoped address, 73 * match the source address's zone (if set) or address (if not) to a netif 76 * 6) tries to match the (unscoped) source address to the netif 81 * @param src the source IPv6 address, if known 111 * rules; in most cases this should be the scoped-source rule below. */ in ip6_route() 129 /* Special processing for scoped source and destination addresses. If we get in ip6_route() 131 * to look at the source address, which may or may not have a zone. If it in ip6_route() 134 * result in guaranteed zone violations. For scoped source addresses that do in ip6_route() [all …]
|
H A D | icmp6.c | 11 * Redistribution and use in source and binary forms, with or without modification, 14 * 1. Redistributions of source code must retain the above copyright notice, 164 /* Determine reply source IPv6 address. */ in icmp6_input() 258 * Send an icmpv6 'time exceeded' packet, with explicit source and destination 262 * packet for which this response is meant. The provided source and destination 268 * @param src_addr source address of the original packet, with zone information 317 /* Select an address to use as source. */ in icmp6_send_response() 331 * timeout). The caller must provide the zoned source and destination addresses 342 * @param src_addr original source address 353 LWIP_ASSERT("must provide both source and destination", src_addr != NULL); in icmp6_send_response_with_addrs() [all …]
|
/nrf52832-nimble/rt-thread/components/net/freemodbus/ |
H A D | gpl.txt | 24 this service if you wish), that you receive source code or can get it 36 source code. And you must show them these terms so they know their 80 source code as you receive it, in any medium, provided that you 139 source code, which must be distributed under the terms of Sections 144 cost of physically performing source distribution, a complete 145 machine-readable copy of the corresponding source code, to be 150 to distribute corresponding source code. (This alternative is 155 The source code for a work means the preferred form of the work for 156 making modifications to it. For an executable work, complete source 157 code means all the source code for all modules it contains, plus any [all …]
|
H A D | lgpl.txt | 30 for this service if you wish); that you receive source code or can get 42 you. You must make sure that they, too, receive or can get the source 136 "Source code" for a work means the preferred form of the work for 137 making modifications to it. For a library, complete source code means 138 all the source code for all modules it contains, plus any associated 151 complete source code as you receive it, in any medium, provided that 230 it with the complete corresponding machine-readable source code, which 236 source code from the same place satisfies the requirement to 237 distribute the source code, even though third parties are not 238 compelled to copy the source along with the object code. [all …]
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/ |
H A D | COPYING | 24 this service if you wish), that you receive source code or can get it 36 source code. And you must show them these terms so they know their 80 source code as you receive it, in any medium, provided that you 139 source code, which must be distributed under the terms of Sections 144 cost of physically performing source distribution, a complete 145 machine-readable copy of the corresponding source code, to be 150 to distribute corresponding source code. (This alternative is 155 The source code for a work means the preferred form of the work for 156 making modifications to it. For an executable work, complete source 157 code means all the source code for all modules it contains, plus any [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/netif/ |
H A D | ieee802154.h | 10 * Redistribution and use in source and binary forms, with or without modification, 13 * 1. Redistributions of source code must retain the above copyright notice, 63 /** Source PAN ID is omitted if Source Addressing Mode is 0 66 /** Source Address is omitted if Source Addressing Mode is 0 */ 104 #define IEEE_802154_FC_SRC_ADDR_MODE_MASK 0xc000 /* bits 14..15: Source Addressing Mode */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/ipv6/ |
H A D | ip6.c | 11 * Redistribution and use in source and binary forms, with or without modification, 14 * 1. Redistributions of source code must retain the above copyright notice, 76 * 5) tries to match the source address to the netif 79 * @param src the source IPv6 address, if known 108 /* Try to find the netif for the source address, checking that link is up. */ in ip6_route() 156 /* try with the netif that matches the source address. */ in ip6_route() 197 * Select the best IPv6 source address for a given destination 203 * @return the most suitable source address to use, or NULL if no suitable 204 * source address is found 212 /* If dest is link-local, choose a link-local source. */ in ip6_select_source_address() [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/ |
H A D | ip.h | 10 * Redistribution and use in source and binary forms, with or without modification, 13 * 1. Redistributions of source code must retain the above copyright notice, 123 /** Source IP address of current_header */ 142 /** Source IP address of current_header */ 158 /** Source IPv6 address of current_header */ 170 /** Source IP4 address of current_header */ 187 /** Source IP4 address of current_header */ 204 /** Source IP6 address of current_header */ 211 /** Union source address of current_header */ 226 * Output IP packet, netif is selected by source address [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/ |
H A D | ip.h | 10 * Redistribution and use in source and binary forms, with or without modification, 13 * 1. Redistributions of source code must retain the above copyright notice, 121 /** Source IP address of current_header */ 140 /** Source IP address of current_header */ 156 /** Source IPv6 address of current_header */ 168 /** Source IP4 address of current_header */ 185 /** Source IP4 address of current_header */ 202 /** Source IP6 address of current_header */ 209 /** Union source address of current_header */ 224 * Output IP packet, netif is selected by source address [all …]
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/tests/ |
H A D | zlib1.c | 31 // the GNU General Public License. However the source code for this file 93 "than Source Code.\n" 95 "identified as the Initial Developer in the Source Code\n" 116 "1.10. \"Original Code\" means Source Code of computer\n" 117 "software code which is described in the Source Code\n" 122 "1.11. \"Source Code\" means the preferred form of the\n" 126 "and installation of an Executable, or a list of source\n" 129 "Code of the Contributor's choice. The Source Code can be\n"
|
/nrf52832-nimble/packages/NimBLE-latest/docs/ |
H A D | conf.py | 41 # The suffix(es) of source filenames. 70 # List of patterns, relative to source directory, that match files and 71 # directories to ignore when looking for source files. 142 # (source start file, target name, title, 153 # (source start file, name, description, authors, manual section). 163 # (source start file, target name, title, author,
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/include/host/ |
H A D | ble_uuid.h | 127 * @param buf The source buffer to parse. 130 * @return 0 on success, BLE_HS_EINVAL if the source buffer does not contain 147 * @param src Source UUID. 158 * @param uuid The source UUID to convert. 167 * @param uuid The source UUID to convert.
|
/nrf52832-nimble/rt-thread/libcpu/mips/common/ |
H A D | mips_regs.h | 730 #define __read_32bit_c0_register(source, sel) \ argument 734 "mfc0\t%0, " #source "\n\t" \ 739 "mfc0\t%0, " #source ", " #sel "\n\t" \ 745 #define __read_64bit_c0_register(source, sel) \ argument 750 "dmfc0\t%0, " #source "\n\t" \ 756 "dmfc0\t%0, " #source ", " #sel "\n\t" \ 809 #define __read_64bit_c0_split(source, sel) \ argument 818 "dmfc0\t%M0, " #source "\n\t" \ 827 "dmfc0\t%M0, " #source ", " #sel "\n\t" \ 838 #define __write_64bit_c0_split(source, sel, val) \ argument [all …]
|