/Zephyr-latest/scripts/native_simulator/native/src/ |
D | native_rtc.c | 26 uint64_t sec; in native_rtc_gettime_us() local 28 hwtimer_get_pseudohost_rtc_time(&nsec, &sec); in native_rtc_gettime_us() 29 return sec * 1000000UL + nsec / 1000U; in native_rtc_gettime_us() 42 void native_rtc_gettime(int clock_type, uint32_t *nsec, uint64_t *sec) in native_rtc_gettime() argument 47 *sec = us / 1000000UL; in native_rtc_gettime() 49 hwtimer_get_pseudohost_rtc_time(nsec, sec); in native_rtc_gettime()
|
/Zephyr-latest/boards/native/native_posix/ |
D | native_rtc.c | 28 uint64_t sec; in native_rtc_gettime_us() local 30 hwtimer_get_pseudohost_rtc_time(&nsec, &sec); in native_rtc_gettime_us() 31 return sec * 1000000UL + nsec / 1000U; in native_rtc_gettime_us() 44 void native_rtc_gettime(int clock_type, uint32_t *nsec, uint64_t *sec) in native_rtc_gettime() argument 49 *sec = us / 1000000UL; in native_rtc_gettime() 51 hwtimer_get_pseudohost_rtc_time(nsec, sec); in native_rtc_gettime()
|
D | native_rtc.h | 53 void native_rtc_gettime(int clock_type, uint32_t *nsec, uint64_t *sec);
|
D | timer_model.h | 33 void hwtimer_get_pseudohost_rtc_time(uint32_t *nsec, uint64_t *sec);
|
/Zephyr-latest/drivers/sensor/st/stts751/ |
D | Kconfig | 82 0: 1 conv every 16 sec 83 1: 1 conv every 8 sec 84 2: 1 conv every 4 sec 85 3: 1 conv every 2 sec 86 4: 1 conv every sec 87 5: 2 convs every sec 88 6: 4 convs every sec 89 7: 8 convs every sec 90 8: 16 convs every sec 91 9: 32 convs every sec
|
/Zephyr-latest/soc/mediatek/mt8xxx/ |
D | mtk_adsp_load.py | 112 self.sec = Regs(sec_base) 113 self.sec.ALTVEC_C0 = 0x04 114 self.sec.ALTVECSEL = 0x0C 115 self.sec.freeze() 129 self.sec.ALTVEC_C0 = boot_vector 130 self.sec.ALTVECSEL = 0x03 # Enable alternate vector 145 self.sec = Regs(sec_base) 146 self.sec.ALTVEC_C0 = 0x04 147 self.sec.ALTVECSEL = 0x0C 148 self.sec.freeze() [all …]
|
D | gen_img.py | 86 for sec in ef.iter_sections(): 87 if isinstance(sec, elftools.elf.sections.SymbolTableSection): 88 for sym in sec.iter_symbols():
|
/Zephyr-latest/drivers/counter/ |
D | counter_max32_rtc.c | 73 uint32_t sec = 0, subsec = 0; in api_get_value() local 76 sec = regs->sec; in api_get_value() 77 if (regs->sec != sec) { in api_get_value() 78 sec = regs->sec; in api_get_value() 87 *ticks = sec; in api_get_value()
|
/Zephyr-latest/samples/drivers/counter/alarm/ |
D | README.rst | 44 Set alarm in 2 sec 47 Set alarm in 4 sec 50 Set alarm in 8 sec 53 Set alarm in 16 sec
|
/Zephyr-latest/samples/drivers/led/pwm/ |
D | README.rst | 24 - Blinking on: 0.1 sec, off: 0.1 sec 25 - Blinking on: 1 sec, off: 1 sec
|
/Zephyr-latest/samples/sensor/vcnl4040/ |
D | README.rst | 11 5 sec in the interval of 300msec in polling mode. Then threshold trigger mode 47 <repeats for 5sec every 300ms> 56 <repeats whenever triggered for 5sec>
|
/Zephyr-latest/scripts/native_simulator/native/src/include/ |
D | native_rtc.h | 52 void native_rtc_gettime(int clock_type, uint32_t *nsec, uint64_t *sec);
|
D | nsi_timer_model.h | 32 void hwtimer_get_pseudohost_rtc_time(uint32_t *nsec, uint64_t *sec);
|
/Zephyr-latest/tests/bsim/bluetooth/host/security/id_addr_update/central/src/ |
D | utils.h | 15 void set_security(struct bt_conn *conn, bt_security_t sec);
|
/Zephyr-latest/tests/bsim/bluetooth/host/security/id_addr_update/peripheral/src/ |
D | utils.h | 15 void set_security(struct bt_conn *conn, bt_security_t sec);
|
/Zephyr-latest/boards/snps/nsim/arc_classic/ |
D | nsim_nsim_sem.dts | 12 #include "nsim_em-sec.dtsi"
|
D | nsim_nsim_sem_mpu_stack_guard.dts | 12 #include "nsim_em-sec.dtsi"
|
/Zephyr-latest/samples/drivers/led/xec/ |
D | README.rst | 31 - Blinking on: 0.1 sec, off: 0.1 sec 32 - Blinking on: 1 sec, off: 1 sec
|
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/ |
D | mesh_test.h | 129 for (uint8_t sec = (wait); !(cond); sec--) { \ 130 if (!sec) { \
|
/Zephyr-latest/drivers/rtc/ |
D | rtc_ifx_cat1.c | 123 z_time->tm_sec = (int)pdlTime->sec; in _ifx_cat1_rtc_from_pdl_time() 204 uint32_t sec = timeptr->tm_sec; in ifx_cat1_rtc_set_time() local 218 if (!CY_RTC_IS_SEC_VALID(sec) || !CY_RTC_IS_MIN_VALID(min) || !CY_RTC_IS_HOUR_VALID(hour) || in ifx_cat1_rtc_set_time() 231 rslt = Cy_RTC_SetDateAndTimeDirect(sec, min, hour, day, mon, year2digit); in ifx_cat1_rtc_set_time()
|
/Zephyr-latest/soc/sensry/ganymed/sy1xx/common/ |
D | udma.c | 102 uint32_t sec = 250000000; in sy1xx_udma_busy_delay() local 103 uint32_t millis = (sec / 1000) * msec; in sy1xx_udma_busy_delay()
|
/Zephyr-latest/subsys/bluetooth/host/shell/ |
D | l2cap.c | 341 int sec; in cmd_ecred_connect() local 343 sec = shell_strtoul(argv[2], 10, &err); in cmd_ecred_connect() 350 l2ch_chan.ch.required_sec_level = sec; in cmd_ecred_connect() 382 int sec; in cmd_connect() local 384 sec = *argv[2] - '0'; in cmd_connect() 386 l2ch_chan.ch.required_sec_level = sec; in cmd_connect()
|
/Zephyr-latest/tests/benchmarks/app_kernel/ |
D | README.txt | 44 | size(B) | time/packet (nsec) | KB/sec | 60 | raw transfer rate: NNNN KB/sec (without overhead) | 68 | size(B) | time/packet (nsec) | KB/sec | 85 | size(B) | time/packet (nsec) | KB/sec | 102 | size(B) | time/packet (nsec) | KB/sec |
|
/Zephyr-latest/samples/drivers/charger/ |
D | Kconfig | 14 int "Excess discharge duration in µsec"
|
/Zephyr-latest/include/zephyr/bluetooth/services/ |
D | cts.h | 50 uint8_t sec; member
|