Home
last modified time | relevance | path

Searched full:date (Results 1 – 25 of 169) sorted by relevance

1234567

/Zephyr-latest/scripts/ci/
Dversion_mgr.py10 "date": "<date>",
60 item_compat['date'] = None
78 if item_compat.get('date'):
79 pdate = datetime.strptime(item_compat['date'], '%Y-%m-%dT%H:%M:%S.%f')
80 date = pdate.strftime("%b %d %Y %H:%M:%S")
81 datestr = f"published on {date}"
94 date = item_compat.get("date", False)
97 if date:
98 datestr = f"published on {date}"
132 item['date'] = today
/Zephyr-latest/samples/drivers/rtc/
DREADME.rst5 Set and read the date/time from a Real-Time Clock.
11 to set and read the date/time from RTC and display on the console
30 RTC date and time: 2024-11-17 04:19:00
31 RTC date and time: 2024-11-17 04:19:01
Dsample.yaml19 - "RTC date and time: 2024-11-17 04:19:01"
/Zephyr-latest/scripts/schemas/
Dpatch-schema.yml44 # The date the patch was created, in ISO 8601 date format YYYY-MM-DD
45 date:
47 type: date
77 # The date the associated merge-pr was merged, in ISO 8601 date format YYYY-MM-DD
78 merge-date:
79 type: date
/Zephyr-latest/subsys/bindesc/
DKconfig.build_time62 bool "Build date and time as string"
64 The date and time of compilation as a string, such as "2023-09-29T17:43:14+0000"
67 bool "Build date as string"
69 The date of compilation as a string, such as "2023-09-29"
77 string "Date-Time format"
91 string "Date format"
94 Format of the build date string. This value is passed to cmake's string(TIMESTAMP ...)
/Zephyr-latest/scripts/release/
Dbug_bash.py8 This script will query the top-ten Bug Bashers in a specified date window.
30 parser.add_argument('-s', '--start', dest='start', help='start date (YYYY-mm-dd)',
32 parser.add_argument('-e', '--end', dest='end', help='end date (YYYY-mm-dd)',
39 'end date {} is before start date {}'.format(args.end, args.start))
109 date window"""
118 """Return GitHub issues representing bugs in the provided date
129 # or 'end date' :-/
152 """custom argparse *date* type for user dates values given from the
157 msg = "Given Date ({0}) not valid! Expected format, YYYY-MM-DD!".format(arg_date_str)
Dlist_backports.py49 """custom argparse *date* type for user dates values given from the
54 msg = "Given Date ({0}) not valid! Expected format, YYYY-MM-DD!".format(arg_date_str)
66 parser.add_argument('-s', '--start', dest='start', help='start date (YYYY-mm-dd)',
68 parser.add_argument('-e', '--end', dest='end', help='end date (YYYY-mm-dd)',
103 f'end date {args.end} is before start date {args.start}')
216 """Return GitHub issues fixed in the provided date window"""
/Zephyr-latest/samples/drivers/rtc/src/
Dmain.c28 printk("Cannot write date time: %d\n", ret); in set_date_time()
41 printk("Cannot read date time: %d\n", ret); in get_date_time()
45 printk("RTC date and time: %04d-%02d-%02d %02d:%02d:%02d\n", tm.tm_year + 1900, in get_date_time()
61 /* Continuously read the current date and time from the RTC */ in main()
/Zephyr-latest/doc/_extensions/zephyr/
Dgh_utils.py15 of pages, direct links to open a GitHub issue regarding a page, or date of the most recent commit
23 * ``git_info``: Returns the date and SHA1 of the last commit made to a page (if this page is
167 """Return a tuple with the date and SHA1 of the last commit made to a page.
174 Optional[Tuple[str, str]] -- Tuple with the date and SHA1 of the last commit made to the
206 "--date=unix",
214 date, sha1 = date_and_sha1.split(" ", 1)
215 date_object = datetime.fromtimestamp(int(date))
218 date = format_date(last_update_fmt, date=date_object, language=app.config.language)
220 return (date, sha1)
/Zephyr-latest/subsys/shell/modules/
DKconfig13 bool "Date shell"
17 This shell provides access to date and time based on Unix time.
/Zephyr-latest/tests/subsys/logging/log_output/
Dtestcase.yaml18 logging.output.ts64.date:
26 logging.output.ts64.date.fulllibc:
/Zephyr-latest/drivers/rtc/
Drtc_rv3028.c461 uint8_t date[7]; in rv3028_set_time() local
478 date[0] = bin2bcd(timeptr->tm_sec) & RV3028_SECONDS_MASK; in rv3028_set_time()
479 date[1] = bin2bcd(timeptr->tm_min) & RV3028_MINUTES_MASK; in rv3028_set_time()
480 date[2] = bin2bcd(timeptr->tm_hour) & RV3028_HOURS_24H_MASK; in rv3028_set_time()
481 date[3] = timeptr->tm_wday & RV3028_WEEKDAY_MASK; in rv3028_set_time()
482 date[4] = bin2bcd(timeptr->tm_mday) & RV3028_DATE_MASK; in rv3028_set_time()
483 date[5] = bin2bcd(timeptr->tm_mon + RV3028_MONTH_OFFSET) & RV3028_MONTH_MASK; in rv3028_set_time()
484 date[6] = bin2bcd(timeptr->tm_year - RV3028_YEAR_OFFSET) & RV3028_YEAR_MASK; in rv3028_set_time()
486 err = rv3028_write_regs(dev, RV3028_REG_SECONDS, &date, sizeof(date)); in rv3028_set_time()
503 uint8_t date[7]; in rv3028_get_time() local
[all …]
/Zephyr-latest/tests/subsys/mgmt/mcumgr/os_mgmt_info/
DKconfig9 bool "Build date time test"
/Zephyr-latest/.github/workflows/
Dtwister-publish.yaml41 # set run date on upload to get consistent and unified data across the matrix.
42 run_date=`date --iso-8601=minutes`
Dcodecov.yaml190 - name: Get current date
193 echo "run_date=$(date --iso-8601=minutes)" >> "$GITHUB_OUTPUT"
194 echo "run_date_short=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
195 echo "run_date_year=$(date +'%Y')" >> "$GITHUB_OUTPUT"
196 echo "run_date_month=$(date +'%m')" >> "$GITHUB_OUTPUT"
/Zephyr-latest/soc/altr/zephyr_nios2f/cpu/
Dghrd_10m50da.qpf22 # Date created = 16:01:48 April 27, 2016
27 DATE = "16:01:48 April 27, 2016"
/Zephyr-latest/scripts/checkpatch/
Dtimestamp11 # outputs the date and time in pre-set formats
73 output=$(date +${output_date}${output_time})
/Zephyr-latest/scripts/ci/es_upload/
Dzephyr_twister_flat_footprint_index.json6 "type": "date"
28 "type": "date"
Dzephyr_twister_flat_recording_metrics_index.json6 "type": "date"
28 "type": "date"
Dzephyr_twister_index.json6 "type": "date"
28 "type": "date"
Dzephyr_twister_flat_recording_index.json6 "type": "date"
28 "type": "date"
/Zephyr-latest/subsys/bluetooth/services/
Dcts.c40 /* fill date time structure */ in bt_cts_time_to_unix_ms()
78 /* generate date time from unix timestamp */ in bt_cts_time_from_unix_ms()
87 /* 'Exact Time 256' contains 'Day Date Time' which contains in bt_cts_time_from_unix_ms()
88 * 'Date Time' - characteristic contains fields for: in bt_cts_time_from_unix_ms()
/Zephyr-latest/doc/develop/west/
Dwithout-west.rst12 addition to the main zephyr repository, and keeping them up to date
47 and keeping existing ones up to date at the latest revisions.
127 up to date build of the Zephyr application, so it's compiled before
/Zephyr-latest/subsys/mgmt/mcumgr/grp/os_mgmt/
DKconfig187 bool "Show build date and time"
189 Will allow returning the build date and time of the firmware by using the info with
193 build date/time in the output firmware image.
/Zephyr-latest/scripts/west_commands/
DREADME.txt11 date. The mypy static type checker is also run on the runners package.

1234567