Home
last modified time | relevance | path

Searched refs:ds3231 (Results 1 – 24 of 24) sorted by relevance

/Zephyr-latest/samples/drivers/counter/maxim_ds3231/src/
Dmain.c152 static void show_counter(const struct device *ds3231) in show_counter() argument
156 printk("\nCounter at %p\n", ds3231); in show_counter()
158 counter_get_max_top_value(ds3231), in show_counter()
159 counter_get_max_top_value(ds3231)); in show_counter()
160 printk("\t%u channels\n", counter_get_num_of_channels(ds3231)); in show_counter()
161 printk("\t%u Hz\n", counter_get_frequency(ds3231)); in show_counter()
164 counter_get_top_value(ds3231), in show_counter()
165 counter_get_top_value(ds3231)); in show_counter()
167 (void)counter_get_value(ds3231, &now); in show_counter()
179 static void set_aligned_clock(const struct device *ds3231) in set_aligned_clock() argument
[all …]
/Zephyr-latest/tests/drivers/counter/maxim_ds3231_api/boards/
Dnrf51dk_nrf51822.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dnrf52840dk_nrf52840.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dfrdm_k64f.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dsltb004a.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dnucleo_l476rg.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dparticle_xenon.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
/Zephyr-latest/samples/drivers/counter/maxim_ds3231/boards/
Dnrf51dk_nrf51822.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dnrf52840dk_nrf52840.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dfrdm_k64f.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dsltb004a.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dnucleo_l476rg.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
Dparticle_xenon.overlay9 ds3231: ds3231@68 {
10 compatible = "maxim,ds3231";
/Zephyr-latest/tests/drivers/build_all/counter/
Di2c_devices.overlay27 test_ds3231: ds3231@0 {
28 compatible = "maxim,ds3231";
/Zephyr-latest/drivers/sensor/maxim/ds3231/
DCMakeLists.txt7 zephyr_library_sources(ds3231.c)
/Zephyr-latest/drivers/counter/
Dmaxim_ds3231.c81 const struct device *ds3231; member
667 const struct device *ds3231 = data->ds3231; in alarm_worker() local
668 const struct ds3231_config *cfg = ds3231->config; in alarm_worker()
672 int af = check_handled_alarms(ds3231); in alarm_worker()
688 int rc = cancel_alarm(ds3231, id); in alarm_worker()
691 validate_isw_monitoring(ds3231); in alarm_worker()
704 cb(ds3231, id, ticks, ud); in alarm_worker()
712 handler(ds3231, id, data->isw_syncclock, ud); in alarm_worker()
717 af = check_handled_alarms(ds3231); in alarm_worker()
728 maxim_ds3231_read_syncclock(ds3231) - data->isw_syncclock); in alarm_worker()
[all …]
/Zephyr-latest/drivers/sensor/maxim/
DCMakeLists.txt15 add_subdirectory_ifdef(CONFIG_SENSOR_DS3231 ds3231)
DKconfig6 source "drivers/sensor/maxim/ds3231/Kconfig"
/Zephyr-latest/boards/intel/socfpga_std/cyclonev_socdk/
Dcyclonev_socdk.dts75 ds3231: rtc@68 { label
76 compatible = "maxim,ds3231";
/Zephyr-latest/drivers/mfd/
DKconfig26 source "drivers/mfd/Kconfig.ds3231"
/Zephyr-latest/drivers/rtc/
DKconfig47 source "drivers/rtc/Kconfig.ds3231"
/Zephyr-latest/samples/drivers/counter/maxim_ds3231/
DREADME.rst1 .. zephyr:code-sample:: ds3231
/Zephyr-latest/doc/releases/
Drelease-notes-4.1.rst760 * :dtcompatible:`maxim,ds3231-mfd`
840 * :dtcompatible:`maxim,ds3231-rtc`
855 * :dtcompatible:`maxim,ds3231-sensor`
/Zephyr-latest/tests/drivers/counter/maxim_ds3231_api/src/
Dtest_counter.c28 DEVICE_DT_GET(DT_NODELABEL(ds3231)),