text
stringlengths
19
585k
label
stringclasses
2 values
category
stringclasses
2 values
language
stringclasses
14 values
repo
stringclasses
932 values
sha
stringlengths
40
40
@@ -140,9 +140,9 @@ index d6615ec5a29f3e3327ac4171f3fc5d9a69bd09fe..c166b7de23c35716bf8c51b6b9c72f77 + this._zenHandleUrlbarClose(); + } else if (!this._untrimmedValue || this.searchMode || this.window.gZenVerticalTabsManager._hasSetSingleToolbar) { + // Restore the current page URL when the urlbar is e...
bad
review
zen-browser/desktop
3496e4ecee378bfea7dd8c5d57c8c000ca245150
diff --git a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch index f33a99404cc..43314bcc02f 100644 --- a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch +++ b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch @@ -140,9 +140,...
good
review_fixed
zen-browser/desktop
3496e4ecee378bfea7dd8c5d57c8c000ca245150
@@ -520,7 +520,8 @@ list-style-image: url("permissions-fill.svg"); } &[boosting] image { - color: var(--color-accent-primary); + fill-opacity: 1 !important; + color: var(--zen-sidebar-themed-icon-fill); list-style-image: url("permissions-fill.svg"); }
bad
review
zen-browser/desktop
0058ab898ba770fcd6778be531ff7f57e91a4502
diff --git a/src/browser/themes/shared/zen-icons/icons.css b/src/browser/themes/shared/zen-icons/icons.css index ed143a42b73..bf563df958a 100644 --- a/src/browser/themes/shared/zen-icons/icons.css +++ b/src/browser/themes/shared/zen-icons/icons.css @@ -520,7 +520,8 @@ list-style-image: url("permissions-fill.svg");...
good
review_fixed
zen-browser/desktop
0058ab898ba770fcd6778be531ff7f57e91a4502
@@ -5,3 +5,108 @@ const { SelectorComponent } = ChromeUtils.importESModule( "resource:///modules/zen/boosts/ZenSelectorComponent.sys.mjs" ); + +// --- Boost pixel-level test helpers -------------------------------------- +// +// Used by browser_boosts_*.js. Each helper documents what regression in the +// boost pa...
bad
review
javascript
zen-browser/desktop
d555912e2ac7267dfedfc3129282ca035f034a7b
diff --git a/src/zen/tests/boosts/head.js b/src/zen/tests/boosts/head.js index 7514c6dea02..011447b43f9 100644 --- a/src/zen/tests/boosts/head.js +++ b/src/zen/tests/boosts/head.js @@ -5,3 +5,108 @@ const { SelectorComponent } = ChromeUtils.importESModule( "resource:///modules/zen/boosts/ZenSelectorComponent.sys.mj...
good
review_fixed
javascript
zen-browser/desktop
d555912e2ac7267dfedfc3129282ca035f034a7b
@@ -0,0 +1,104 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "gtest/gtest.h" + +#include "mozilla/nsZenBoostsBackend.h" + +using zen::detail::A...
bad
review
cpp
zen-browser/desktop
d555912e2ac7267dfedfc3129282ca035f034a7b
diff --git a/src/zen/boosts/gtest/TestZenBoostsAccentCache.cpp b/src/zen/boosts/gtest/TestZenBoostsAccentCache.cpp new file mode 100644 index 00000000000..39896f8639e --- /dev/null +++ b/src/zen/boosts/gtest/TestZenBoostsAccentCache.cpp @@ -0,0 +1,104 @@ +/* This Source Code Form is subject to the terms of the Mozilla ...
good
review_fixed
cpp
zen-browser/desktop
d555912e2ac7267dfedfc3129282ca035f034a7b
@@ -28,7 +28,7 @@ "surfer": "surfer", "test": "python3 scripts/run_tests.py", "test:dbg": "python3 scripts/run_tests.py --jsdebugger --debug-on-failure", - "test:gtest": "cd engine && ./mach gtest", + "test:gtest": "cd engine && ./mach gtest Zen*", "ffprefs": "cd tools/ffprefs && cargo run --b...
bad
review
zen-browser/desktop
d555912e2ac7267dfedfc3129282ca035f034a7b
diff --git a/package.json b/package.json index 6e7fd8fd098..c62853c08fa 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "surfer": "surfer", "test": "python3 scripts/run_tests.py", "test:dbg": "python3 scripts/run_tests.py --jsdebugger --debug-on-failure", - "test:gtest": "cd engine && ....
good
review_fixed
zen-browser/desktop
d555912e2ac7267dfedfc3129282ca035f034a7b
@@ -540,6 +540,11 @@ & toolbarbutton { margin: 0; + + &[disabled] {
bad
review
zen-browser/desktop
5216fa29077cb8db4fe9c91afbb494d35f4a4b2a
diff --git a/src/zen/common/styles/zen-single-components.css b/src/zen/common/styles/zen-single-components.css index d34677a83cf..02a2d64d2fc 100644 --- a/src/zen/common/styles/zen-single-components.css +++ b/src/zen/common/styles/zen-single-components.css @@ -540,6 +540,10 @@ & toolbarbutton { margin: 0; + +...
good
review_fixed
zen-browser/desktop
5216fa29077cb8db4fe9c91afbb494d35f4a4b2a
@@ -540,6 +540,10 @@ & toolbarbutton { margin: 0; + + &[disabled] { + visibility: hidden; + }
bad
review
zen-browser/desktop
5216fa29077cb8db4fe9c91afbb494d35f4a4b2a
diff --git a/src/zen/common/styles/zen-single-components.css b/src/zen/common/styles/zen-single-components.css index d34677a83cf..02a2d64d2fc 100644 --- a/src/zen/common/styles/zen-single-components.css +++ b/src/zen/common/styles/zen-single-components.css @@ -540,6 +540,10 @@ & toolbarbutton { margin: 0; + +...
good
review_fixed
zen-browser/desktop
5216fa29077cb8db4fe9c91afbb494d35f4a4b2a
@@ -853,6 +858,23 @@ ${cssSelector} { const centerX = rect.left + rect.width / 2; const centerY = rect.top + rect.height / 2; const radius = (rect.width - padding) / 2; + + const dotDistance = this.currentBoostData.dotDistance; + const primaryDotAngleDeg = this.currentBoostData.dotAngleDeg; + +...
bad
review
javascript
zen-browser/desktop
39746d3d84c2bef01e8f0bd0d41a82043cdb722c
diff --git a/src/zen/boosts/ZenBoostsEditor.mjs b/src/zen/boosts/ZenBoostsEditor.mjs index 723229743f3..6956c124a48 100644 --- a/src/zen/boosts/ZenBoostsEditor.mjs +++ b/src/zen/boosts/ZenBoostsEditor.mjs @@ -824,13 +824,19 @@ ${cssSelector} { const dotSec = this.doc.querySelector( "#zen-boost-color-picker-...
good
review_fixed
javascript
zen-browser/desktop
39746d3d84c2bef01e8f0bd0d41a82043cdb722c
@@ -242,23 +244,23 @@ index d6615ec5a29f3e3327ac4171f3fc5d9a69bd09fe..e1128b0d7f5accfd48af27f99e3b2e64 return where; } -@@ -4552,6 +4660,7 @@ ${ +@@ -4552,6 +4662,7 @@ ${ this.setResultForCurrentValue(null); this.handleCommand(); this.controller.clearLastQueryContextCache(); + ...
bad
review
zen-browser/desktop
39746d3d84c2bef01e8f0bd0d41a82043cdb722c
diff --git a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch index bb291a8b8a3..f4e335a6dc0 100644 --- a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch +++ b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch @@ -1,5 +1,5 @@...
good
review_fixed
zen-browser/desktop
39746d3d84c2bef01e8f0bd0d41a82043cdb722c
@@ -82,7 +82,7 @@ export class nsZenBoostStyles { if (fontCase != "" || fontFamily != "") { style += `/* Text Format */\n`; - style += `body * {\n`; + style += `body *:not(span):not(gf-load-icon-font):not(mat-icon):not(i) {\n`;
bad
review
javascript
zen-browser/desktop
6d1a0681ece7a409a71ebf77f42e9e5d3b9863f4
diff --git a/src/zen/boosts/ZenBoostStyles.sys.mjs b/src/zen/boosts/ZenBoostStyles.sys.mjs index 40c230f6f05..ac2a022f8bb 100644 --- a/src/zen/boosts/ZenBoostStyles.sys.mjs +++ b/src/zen/boosts/ZenBoostStyles.sys.mjs @@ -82,7 +82,7 @@ export class nsZenBoostStyles { if (fontCase != "" || fontFamily != "") { ...
good
review_fixed
javascript
zen-browser/desktop
6d1a0681ece7a409a71ebf77f42e9e5d3b9863f4
@@ -250,12 +250,15 @@ export class nsZenSiteDataPanel { const boostButton = this.document.getElementById("zen-site-data-boost"); if (!canBoostSite) { boostButton.removeAttribute("boosting"); + boostButton.setAttribute("disabled", "true"); }
bad
review
javascript
zen-browser/desktop
ad4fd66fec591825e6115ca5fb35079c26c3f8e5
diff --git a/src/zen/urlbar/ZenSiteDataPanel.sys.mjs b/src/zen/urlbar/ZenSiteDataPanel.sys.mjs index b8d7e79f5f2..90e037b09a6 100644 --- a/src/zen/urlbar/ZenSiteDataPanel.sys.mjs +++ b/src/zen/urlbar/ZenSiteDataPanel.sys.mjs @@ -250,12 +250,12 @@ export class nsZenSiteDataPanel { const boostButton = this.document....
good
review_fixed
javascript
zen-browser/desktop
ad4fd66fec591825e6115ca5fb35079c26c3f8e5
@@ -398,21 +399,15 @@ inline static bool IsBoostExemptFrame(const nsIFrame* aFrame) { if (!content || !content->IsInNativeAnonymousSubtree()) { return false; } - if (const nsIContent* root = - content->GetClosestNativeAnonymousSubtreeRoot()) { - if (root->IsElement()) { - switch (root->AsEl...
bad
review
cpp
zen-browser/desktop
a5907737cf3bea903ed3ab611a8794f66eb4e62b
diff --git a/src/zen/boosts/nsZenBoostsBackend.cpp b/src/zen/boosts/nsZenBoostsBackend.cpp index f9eaf646104..6a64cd72483 100644 --- a/src/zen/boosts/nsZenBoostsBackend.cpp +++ b/src/zen/boosts/nsZenBoostsBackend.cpp @@ -386,8 +386,9 @@ inline static nscolor zenInvertColorChannel(nscolor aColor) { * not touch (devtoo...
good
review_fixed
cpp
zen-browser/desktop
a5907737cf3bea903ed3ab611a8794f66eb4e62b
@@ -386,8 +386,9 @@ inline static nscolor zenInvertColorChannel(nscolor aColor) { * not touch (devtools highlighters, screenshots, the boosts overlays * themselves, and other native-anonymous UI such as scrollbars). A null frame * gives no document to anchor the boost on, so it is treated the same way. - * CSS ge...
bad
review
cpp
zen-browser/desktop
a5907737cf3bea903ed3ab611a8794f66eb4e62b
diff --git a/src/zen/boosts/nsZenBoostsBackend.cpp b/src/zen/boosts/nsZenBoostsBackend.cpp index f9eaf646104..6a64cd72483 100644 --- a/src/zen/boosts/nsZenBoostsBackend.cpp +++ b/src/zen/boosts/nsZenBoostsBackend.cpp @@ -386,8 +386,9 @@ inline static nscolor zenInvertColorChannel(nscolor aColor) { * not touch (devtoo...
good
review_fixed
cpp
zen-browser/desktop
a5907737cf3bea903ed3ab611a8794f66eb4e62b
@@ -281,7 +281,7 @@ zen-workspace-shortcut-switch-9 = Přepnout na pracovní prostor 9 zen-workspace-shortcut-switch-10 = Přepnout do pracovního prostoru 10 zen-workspace-shortcut-forward = Přeposlat pracovní prostor zen-workspace-shortcut-backward = Zpětný pracovní prostor -zen-workspace-shortcut-create = Create New ...
bad
review
zen-browser/desktop
b04f1559864de955abef33ef7ffbd2271eb4077a
diff --git a/locales/cs/browser/browser/preferences/zen-preferences.ftl b/locales/cs/browser/browser/preferences/zen-preferences.ftl index 97baced60ae..b0194f74715 100644 --- a/locales/cs/browser/browser/preferences/zen-preferences.ftl +++ b/locales/cs/browser/browser/preferences/zen-preferences.ftl @@ -281,7 +281,7 @@...
good
review_fixed
zen-browser/desktop
b04f1559864de955abef33ef7ffbd2271eb4077a
@@ -319,4 +319,4 @@ zen-devtools-toggle-accessibility-shortcut = Přepnout přístupnost zen-close-all-unpinned-tabs-shortcut = Zavřít všechny nepřipnuté panely zen-new-unsynced-window-shortcut = Nové nesynchronizované okno zen-duplicate-tab-shortcut = Duplikovat panel -zen-key-find-selection = Find Selection +zen-key-...
bad
review
zen-browser/desktop
b04f1559864de955abef33ef7ffbd2271eb4077a
diff --git a/locales/cs/browser/browser/preferences/zen-preferences.ftl b/locales/cs/browser/browser/preferences/zen-preferences.ftl index 97baced60ae..b0194f74715 100644 --- a/locales/cs/browser/browser/preferences/zen-preferences.ftl +++ b/locales/cs/browser/browser/preferences/zen-preferences.ftl @@ -281,7 +281,7 @@...
good
review_fixed
zen-browser/desktop
b04f1559864de955abef33ef7ffbd2271eb4077a
@@ -81,6 +81,22 @@ const globalActionsTemplate = [ return !tab.hasAttribute("zen-empty-tab") && tab.pinned; }, }, + { + label: "New Boost", + icon: "chrome://browser/skin/zen-icons/boost.svg", + isAvailable: window => { + return isNotEmptyTab(window); + }, + command: window => { + ...
bad
review
javascript
zen-browser/desktop
eeb53d64ef8dd4f14dc90f18800844a280d35c39
diff --git a/src/zen/urlbar/ZenUBGlobalActions.sys.mjs b/src/zen/urlbar/ZenUBGlobalActions.sys.mjs index 607b05ada36..bfc789bb503 100644 --- a/src/zen/urlbar/ZenUBGlobalActions.sys.mjs +++ b/src/zen/urlbar/ZenUBGlobalActions.sys.mjs @@ -81,6 +81,49 @@ const globalActionsTemplate = [ return !tab.hasAttribute("zen...
good
review_fixed
javascript
zen-browser/desktop
eeb53d64ef8dd4f14dc90f18800844a280d35c39
@@ -68,8 +67,7 @@ panel { } .widget-overflow-list .toolbarbutton-1:not(.toolbarbutton-combined) > .toolbarbutton-text, -.subviewbutton:not(#appMenu-zoom-controls > .subviewbutton) > .toolbarbutton-icon + .toolbarbutton-text, -#appMenu-fxa-label2 > vbox { +.subviewbutton:not(#appMenu-zoom-controls > .subviewbutton) ...
bad
review
zen-browser/desktop
8b8ebcffd5b4917ec82ed50d2cb7317946bf5ec2
diff --git a/src/zen/common/styles/zen-popup.css b/src/zen/common/styles/zen-popup.css index 8c29733b091..68c64b713e0 100644 --- a/src/zen/common/styles/zen-popup.css +++ b/src/zen/common/styles/zen-popup.css @@ -8,7 +8,6 @@ @import url("chrome://browser/content/zen-styles/zen-panels/dialog.css"); :root { - --pane...
good
review_fixed
zen-browser/desktop
8b8ebcffd5b4917ec82ed50d2cb7317946bf5ec2
@@ -70,6 +70,17 @@ export class ZenBoostsChild extends JSWindowActorChild { static PREVENTABLE_SET = new Set(ZenBoostsChild.PREVENTABLE_EVENTS); + actorCreated() { + this.#applyBoostForPageIfAvailable(); + } +
bad
review
javascript
zen-browser/desktop
f8959c4576dd342df492dca436b6f183c3d623a7
diff --git a/src/zen/boosts/actors/ZenBoostsChild.sys.mjs b/src/zen/boosts/actors/ZenBoostsChild.sys.mjs index 637d8190936..597a74c0985 100644 --- a/src/zen/boosts/actors/ZenBoostsChild.sys.mjs +++ b/src/zen/boosts/actors/ZenBoostsChild.sys.mjs @@ -70,6 +70,17 @@ export class ZenBoostsChild extends JSWindowActorChild {...
good
review_fixed
javascript
zen-browser/desktop
f8959c4576dd342df492dca436b6f183c3d623a7
@@ -10,22 +10,20 @@ index 1d330056bd7a4e89aac5e5296a3c164fb42b5c42..38bfbcfcaf0c791ee817aafbd24b1cad #include "nsIContent.h" #include "nsLayoutUtils.h" #include "nsRefreshDriver.h" -@@ -343,7 +344,17 @@ static void SetAnimatable(NonCustomCSSPropertyId aProperty, +@@ -341,9 +342,13 @@ static void SetAnimatable(Non...
bad
review
zen-browser/desktop
f8959c4576dd342df492dca436b6f183c3d623a7
diff --git a/src/gfx/layers/AnimationInfo-cpp.patch b/src/gfx/layers/AnimationInfo-cpp.patch index aa58cdcbcc2..7a91671c667 100644 --- a/src/gfx/layers/AnimationInfo-cpp.patch +++ b/src/gfx/layers/AnimationInfo-cpp.patch @@ -1,5 +1,5 @@ diff --git a/gfx/layers/AnimationInfo.cpp b/gfx/layers/AnimationInfo.cpp -index 1d...
good
review_fixed
zen-browser/desktop
f8959c4576dd342df492dca436b6f183c3d623a7
@@ -180,7 +180,6 @@ describe('Clipboard', () => { e.clearSelection(); - assert.equal(selectedElem, document.body);
bad
review
javascript
zenorocha/clipboard.js
0df402284eae270cf90a377e22af990ae69fbcae
diff --git a/test/clipboard.js b/test/clipboard.js index a35cfdf4..8aa11753 100644 --- a/test/clipboard.js +++ b/test/clipboard.js @@ -171,16 +171,16 @@ describe('Clipboard', () => { }); describe('#clearSelection', () => { - it('should remove focus from target and text selection', (done) => { + it('should...
good
review_fixed
javascript
zenorocha/clipboard.js
0df402284eae270cf90a377e22af990ae69fbcae
@@ -37,7 +37,7 @@ describe('ClipboardAction', () => { }); describe('#initSelection', () => { - it('should set the position right style property', (done) => { + xit('should set the position right style property', (done) => {
bad
review
javascript
zenorocha/clipboard.js
c23b30d052c451998858b4202a2cc0df2a07e17e
diff --git a/test/clipboard-action.js b/test/clipboard-action.js index 8d5cc624..b589b4c5 100644 --- a/test/clipboard-action.js +++ b/test/clipboard-action.js @@ -47,7 +47,9 @@ describe('ClipboardAction', () => { text: 'foo', }); - assert.equal(clip.fakeElem.style.right, '-9999px'); + const ...
good
review_fixed
javascript
zenorocha/clipboard.js
c23b30d052c451998858b4202a2cc0df2a07e17e
@@ -0,0 +1,10 @@ +Issue:
bad
review
zenorocha/clipboard.js
40bf3736c405be24e810f3ace102e23b39c4fe87
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..b2f50c8d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,35 @@ +<!-- +Please make sure to read the Pull Request Guidelines: +https://github.com/zenorocha/clipboard.js/blob/master/contrib...
good
review_fixed
zenorocha/clipboard.js
40bf3736c405be24e810f3ace102e23b39c4fe87
@@ -0,0 +1,53 @@ +--- +name: 🐛 Bug Report +about: Submit a bug report to help us improve +labels: 'bug, needs triage' +--- + +<!-- + + ! PLEASE HELP US HELP YOU ! + + Bugs are fixed faster if you include: + - a repro repository to inspect the code + - an url to see the problem live + +--> + +## 🐛 Bug Report + +> ...
bad
review
zenorocha/clipboard.js
40bf3736c405be24e810f3ace102e23b39c4fe87
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..99fe3e69 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,57 @@ +--- +name: 🐛 Bug Report +about: Submit a bug report to help us improve +labels: 'bug, needs triage' +--- + +<...
good
review_fixed
zenorocha/clipboard.js
40bf3736c405be24e810f3ace102e23b39c4fe87
@@ -0,0 +1,4 @@ +import { expectType } from 'tsd'; +import Clipboard from './clipboard'; + +expectType<Clipboard>(new Clipboard('.btn'));
bad
review
typescript
zenorocha/clipboard.js
b460d6864cf3e333dc3b1ba6ed6b348607590a6e
diff --git a/src/clipboard.test-d.ts b/src/clipboard.test-d.ts new file mode 100644 index 00000000..d09b4ebb --- /dev/null +++ b/src/clipboard.test-d.ts @@ -0,0 +1,4 @@ +import { expectType } from 'tsd'; +import Clipboard from './clipboard'; + +expectType<Clipboard>(new Clipboard('.btn'));
good
review_fixed
typescript
zenorocha/clipboard.js
b460d6864cf3e333dc3b1ba6ed6b348607590a6e
@@ -15,6 +15,15 @@ #include <stddef.h> /** @cond INTERNAL_HIDDEN */ +/* + * Identifier builders for the linker-visible symbols that the ZTEST_BENCHMARK*() + * macros generate. Use when defining a symbol or when taking its reference. + */ +#define Z_ZTEST_BENCHMARK_SUITE_NODE(suite) z_ztest_benchmark_suite_##...
bad
review
c
zephyrproject-rtos/zephyr
a355aea0cb3b656168c311e4919a94506cb13388
diff --git a/subsys/testsuite/ztest/include/zephyr/benchmark.h b/subsys/testsuite/ztest/include/zephyr/benchmark.h index 128e1bd66b7d2..5541e69c29255 100644 --- a/subsys/testsuite/ztest/include/zephyr/benchmark.h +++ b/subsys/testsuite/ztest/include/zephyr/benchmark.h @@ -15,6 +15,15 @@ #include <stddef.h> /** @con...
good
review_fixed
c
zephyrproject-rtos/zephyr
a355aea0cb3b656168c311e4919a94506cb13388
@@ -152,11 +188,58 @@ static int pac194x_cmd_refresh_all(const struct device *dev) return 0; } -static int pac194x_sample_fetch(const struct device *dev, enum sensor_channel chan) +static int pac194x_read_16(const struct device *dev, uint8_t reg, uint16_t *data) +{ + const struct pac194x_config *config = dev->conf...
bad
review
c
zephyrproject-rtos/zephyr
a718bb02720986179bb80af6655894ad6d7c8b12
diff --git a/drivers/sensor/microchip/pac194x/pac194x.c b/drivers/sensor/microchip/pac194x/pac194x.c index a002c9410b436..18a5bc8fa87af 100644 --- a/drivers/sensor/microchip/pac194x/pac194x.c +++ b/drivers/sensor/microchip/pac194x/pac194x.c @@ -76,6 +76,7 @@ static const struct pac194x_chip_info pac194x_chip_info_table...
good
review_fixed
c
zephyrproject-rtos/zephyr
a718bb02720986179bb80af6655894ad6d7c8b12
@@ -11,6 +11,16 @@ compatible: "microchip,pac194x" include: [sensor-device.yaml, i2c-device.yaml] +properties: + microchip,refresh-mode: + type: int + default: 0
bad
review
zephyrproject-rtos/zephyr
a718bb02720986179bb80af6655894ad6d7c8b12
diff --git a/dts/bindings/sensor/microchip,pac194x.yaml b/dts/bindings/sensor/microchip,pac194x.yaml index 23a0fe4f14d4a..ef811a5c782a6 100644 --- a/dts/bindings/sensor/microchip,pac194x.yaml +++ b/dts/bindings/sensor/microchip,pac194x.yaml @@ -11,6 +11,18 @@ compatible: "microchip,pac194x" include: [sensor-device.y...
good
review_fixed
zephyrproject-rtos/zephyr
a718bb02720986179bb80af6655894ad6d7c8b12
@@ -0,0 +1,3 @@ +# Modem subsystem +CONFIG_MODEM=y +CONFIG_MODEM_ST87MXX=y
bad
review
zephyrproject-rtos/zephyr
5c2ae7c4da9ef66271eb88d14917392bcb86bbd1
diff --git a/boards/shields/st87mxx/st87mxx.conf b/boards/shields/st87mxx/st87mxx.conf new file mode 100644 index 0000000000000..5083fda2bb4f7 --- /dev/null +++ b/boards/shields/st87mxx/st87mxx.conf @@ -0,0 +1,6 @@ +# Copyright (c) 2026 STMicroelectronics +# SPDX-License-Identifier: Apache-2.0 + +# Modem subsystem +CON...
good
review_fixed
zephyrproject-rtos/zephyr
5c2ae7c4da9ef66271eb88d14917392bcb86bbd1
@@ -54,10 +84,24 @@ Requirements This shield can only be used with a board that provides a configuration for Arduino connectors and defines node aliases for UART and GPIO interfaces. +Build and Programming +********************* + +Set ``--shield st87mxx`` when you invoke ``west build``. + +For example, for a http-...
bad
review
zephyrproject-rtos/zephyr
5c2ae7c4da9ef66271eb88d14917392bcb86bbd1
diff --git a/boards/shields/st87mxx/doc/index.rst b/boards/shields/st87mxx/doc/index.rst index 4654869c0744d..4525bea3ea7fa 100644 --- a/boards/shields/st87mxx/doc/index.rst +++ b/boards/shields/st87mxx/doc/index.rst @@ -6,17 +6,47 @@ ST87MXX shield Overview ******** +The EVKITST87M01 is an evaluation board for the...
good
review_fixed
zephyrproject-rtos/zephyr
5c2ae7c4da9ef66271eb88d14917392bcb86bbd1
@@ -0,0 +1,139 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,139 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,141 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,141 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,141 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,141 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -53,6 +53,14 @@ zephyr,memory-region = "KM4_IMG2_ENTRY"; }; + wdg: watchdog@40002800 { + compatible = "realtek,ameba-watchdog"; + reg = <0x40002800 0x4>;
bad
review
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/dts/arm/realtek/amebad/amebad.dtsi b/dts/arm/realtek/amebad/amebad.dtsi index 0ebed2da67fba..fbc58a570a7dc 100644 --- a/dts/arm/realtek/amebad/amebad.dtsi +++ b/dts/arm/realtek/amebad/amebad.dtsi @@ -61,6 +61,14 @@ status = "disabled"; }; + wdg: watchdog@40002800 { + compatible = "realtek,ameba...
good
review_fixed
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,19 @@ +# Copyright (c) 2026 Realtek Semiconductor Corp. +# SPDX-License-Identifier: Apache-2.0 + +description: Ameba watchdog + +compatible: "realtek,ameba-watchdog" + +include: base.yaml + +properties: + reg: + required: true +
bad
review
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/dts/bindings/watchdog/realtek,ameba-watchdog.yaml b/dts/bindings/watchdog/realtek,ameba-watchdog.yaml new file mode 100644 index 0000000000000..9af1c9089004f --- /dev/null +++ b/dts/bindings/watchdog/realtek,ameba-watchdog.yaml @@ -0,0 +1,33 @@ +# Copyright (c) 2026 Realtek Semiconductor Corp. +# SPDX-Lice...
good
review_fixed
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,172 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,172 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,172 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,172 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,25 @@ +# Copyright (c) 2026 Realtek Semiconductor Corp. +# SPDX-License-Identifier: Apache-2.0 + +description: Ameba watchdog + +compatible: "realtek,ameba-watchdog" + +include: base.yaml + +properties: + reg: + required: true + + interrupts: + required: true + + early-int-cnt:
bad
review
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/dts/bindings/watchdog/realtek,ameba-watchdog.yaml b/dts/bindings/watchdog/realtek,ameba-watchdog.yaml new file mode 100644 index 0000000000000..9af1c9089004f --- /dev/null +++ b/dts/bindings/watchdog/realtek,ameba-watchdog.yaml @@ -0,0 +1,33 @@ +# Copyright (c) 2026 Realtek Semiconductor Corp. +# SPDX-Lice...
good
review_fixed
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_COMPAT realtek_ameba_watchdog + +/* Include <soc.h> before <ameba_soc.h> to avoid redefining unlikely() macro */ +#include <soc.h> +#include <ameba_soc.h> + +#include <zephyr/drive...
bad
review
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/drivers/watchdog/wdt_ameba.c b/drivers/watchdog/wdt_ameba.c new file mode 100644 index 0000000000000..562b8ebb47706 --- /dev/null +++ b/drivers/watchdog/wdt_ameba.c @@ -0,0 +1,185 @@ +/* + * Copyright (c) 2026 Realtek Semiconductor Corp. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +#define DT_DRV_CO...
good
review_fixed
c
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,32 @@ +# Copyright (c) 2026 Realtek Semiconductor Corp. +# SPDX-License-Identifier: Apache-2.0 + +description: Ameba watchdog + +compatible: "realtek,ameba-watchdog" + +include: base.yaml + +properties: + reg: + required: true + + interrupts: + required: true + + early-int-cnt-ms: + type: int + ...
bad
review
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/dts/bindings/watchdog/realtek,ameba-watchdog.yaml b/dts/bindings/watchdog/realtek,ameba-watchdog.yaml new file mode 100644 index 0000000000000..9af1c9089004f --- /dev/null +++ b/dts/bindings/watchdog/realtek,ameba-watchdog.yaml @@ -0,0 +1,33 @@ +# Copyright (c) 2026 Realtek Semiconductor Corp. +# SPDX-Lice...
good
review_fixed
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -0,0 +1,32 @@ +# Copyright (c) 2026 Realtek Semiconductor Corp. +# SPDX-License-Identifier: Apache-2.0 + +description: Ameba watchdog + +compatible: "realtek,ameba-watchdog" + +include: base.yaml + +properties: + reg: + required: true + + interrupts: + required: true + + early-int-cnt-ms: + type: int + ...
bad
review
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
diff --git a/dts/bindings/watchdog/realtek,ameba-watchdog.yaml b/dts/bindings/watchdog/realtek,ameba-watchdog.yaml new file mode 100644 index 0000000000000..9af1c9089004f --- /dev/null +++ b/dts/bindings/watchdog/realtek,ameba-watchdog.yaml @@ -0,0 +1,33 @@ +# Copyright (c) 2026 Realtek Semiconductor Corp. +# SPDX-Lice...
good
review_fixed
zephyrproject-rtos/zephyr
31ce4cc8333b7a8abe4ba77c77a10dec4b3f995e
@@ -56,35 +98,18 @@ tests: - stm32l562e_dk - stm32u083c_dk - stm32wba65i_dk1 - integration_platforms: - - nrf52840dk/nrf52840 - extra_args: EXTRA_CONF_FILE="overlay-bt.conf" harness: pytest harness_config: fixture: usb_hci pytest_root: - - "pytest/test_upgr...
bad
review
zephyrproject-rtos/zephyr
f73aefdf9fd4353f59d8cadd3983835c07e008d4
diff --git a/tests/boot/with_mcumgr/testcase.yaml b/tests/boot/with_mcumgr/testcase.yaml index 4bfb319b234a8..5c135ad9a64ae 100644 --- a/tests/boot/with_mcumgr/testcase.yaml +++ b/tests/boot/with_mcumgr/testcase.yaml @@ -1,9 +1,10 @@ common: sysbuild: true + integration_platforms: + - nrf52840dk/nrf52840 pla...
good
review_fixed
zephyrproject-rtos/zephyr
f73aefdf9fd4353f59d8cadd3983835c07e008d4
@@ -526,6 +593,31 @@ static void ifx_autanalog_sar_adc_isr(const struct device *dev) #endif } /* ifx_autanalog_sar_adc_isr() */ +/** + * @brief FIFO interrupt handler + * + * @param dev Pointer to the device structure for the driver instance. + * + * The FIFO has its own dedicated interrupt line. The level interru...
bad
review
c
zephyrproject-rtos/zephyr
a439c7c6aa457560fb04be2ffcf4d191bdd5e26b
diff --git a/drivers/adc/adc_infineon_autanalog_sar.c b/drivers/adc/adc_infineon_autanalog_sar.c index 80c1b3837dc3d..3de089f39efc2 100644 --- a/drivers/adc/adc_infineon_autanalog_sar.c +++ b/drivers/adc/adc_infineon_autanalog_sar.c @@ -14,6 +14,7 @@ #include <zephyr/dt-bindings/clock/ifx_clock_source_common.h> #incl...
good
review_fixed
c
zephyrproject-rtos/zephyr
a439c7c6aa457560fb04be2ffcf4d191bdd5e26b
@@ -839,11 +937,167 @@ static int ifx_autanalog_sar_adc_init(const struct device *dev) cfg->irq_func(); #endif /* CONFIG_ADC_ASYNC */ + /* Configure FIFO interrupts if FIFO is enabled */ + if (cfg->fifo_enabled) { + static const uint32_t fifo_level_masks[] = { + CY_AUTANALOG_INT_FIFO_LEVEL0, CY_AUTANALOG_INT_FI...
bad
review
c
zephyrproject-rtos/zephyr
a439c7c6aa457560fb04be2ffcf4d191bdd5e26b
diff --git a/drivers/adc/adc_infineon_autanalog_sar.c b/drivers/adc/adc_infineon_autanalog_sar.c index 80c1b3837dc3d..3de089f39efc2 100644 --- a/drivers/adc/adc_infineon_autanalog_sar.c +++ b/drivers/adc/adc_infineon_autanalog_sar.c @@ -14,6 +14,7 @@ #include <zephyr/dt-bindings/clock/ifx_clock_source_common.h> #incl...
good
review_fixed
c
zephyrproject-rtos/zephyr
a439c7c6aa457560fb04be2ffcf4d191bdd5e26b
@@ -839,11 +937,167 @@ static int ifx_autanalog_sar_adc_init(const struct device *dev) cfg->irq_func(); #endif /* CONFIG_ADC_ASYNC */ + /* Configure FIFO interrupts if FIFO is enabled */ + if (cfg->fifo_enabled) { + static const uint32_t fifo_level_masks[] = { + CY_AUTANALOG_INT_FIFO_LEVEL0, CY_AUTANALOG_INT_FI...
bad
review
c
zephyrproject-rtos/zephyr
a439c7c6aa457560fb04be2ffcf4d191bdd5e26b
diff --git a/drivers/adc/adc_infineon_autanalog_sar.c b/drivers/adc/adc_infineon_autanalog_sar.c index 80c1b3837dc3d..3de089f39efc2 100644 --- a/drivers/adc/adc_infineon_autanalog_sar.c +++ b/drivers/adc/adc_infineon_autanalog_sar.c @@ -14,6 +14,7 @@ #include <zephyr/dt-bindings/clock/ifx_clock_source_common.h> #incl...
good
review_fixed
c
zephyrproject-rtos/zephyr
a439c7c6aa457560fb04be2ffcf4d191bdd5e26b
@@ -0,0 +1,194 @@ +/* + * SPDX-FileCopyrightText: <text>Copyright (c) 2026 Infineon Technologies AG, + * or an affiliate of Infineon Technologies AG. All rights reserved.</text> + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/** + * @file + * @brief Public extended API for the Infineon AutAnalog SAR ADC driver. + ...
bad
review
c
zephyrproject-rtos/zephyr
a439c7c6aa457560fb04be2ffcf4d191bdd5e26b
diff --git a/include/zephyr/drivers/adc/infineon_autanalog_sar.h b/include/zephyr/drivers/adc/infineon_autanalog_sar.h new file mode 100644 index 0000000000000..17c163bfaa211 --- /dev/null +++ b/include/zephyr/drivers/adc/infineon_autanalog_sar.h @@ -0,0 +1,210 @@ +/* + * SPDX-FileCopyrightText: <text>Copyright (c) 202...
good
review_fixed
c
zephyrproject-rtos/zephyr
a439c7c6aa457560fb04be2ffcf4d191bdd5e26b