Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong PART on STM32F042 and nRF52832 #52

Closed
Yatekii opened this issue Oct 23, 2019 · 7 comments
Closed

Wrong PART on STM32F042 and nRF52832 #52

Yatekii opened this issue Oct 23, 2019 · 7 comments
Labels
bug Something isn't working good first issue Good for newcomers help wanted Extra attention is needed

Comments

@Yatekii
Copy link
Member

Yatekii commented Oct 23, 2019

the STM32F042 and the nRF52832 have a wrong PART. Should be fixed by an owner of those chips/devkits asap.

@Yatekii
Copy link
Member Author

Yatekii commented Nov 13, 2019

The nRF52832 PART is fixed.

@Yatekii Yatekii added bug Something isn't working good first issue Good for newcomers help wanted Extra attention is needed labels Nov 13, 2019
@Yatekii
Copy link
Member Author

Yatekii commented Nov 13, 2019

Anyone with that chip would be very welcome to evaluate the PART and add it.

@therealprof
Copy link
Contributor

@Yatekii Isn't that burried in one of the gists I've done a while ago?

@Yatekii
Copy link
Member Author

Yatekii commented Nov 14, 2019

Maybe. I am not sure, there was a lot of them ;)

@marikka
Copy link

marikka commented Nov 17, 2019

@Yatekii How can I evaluate the PART?

I have a STM32F042K6T6 connected via the STM32F3DISCOVERY board. Here's what I get by running info. Hope this helps. :)

~/.cargo/bin/probe-rs-cli info
DP info: 0xbb11477

Available Access Ports:
IDR {
    REVISION: 0x0,
    DESIGNER: 0x23b,
    CLASS: MEMAP,
    _RES0: 0x0,
    VARIANT: 0x2,
    TYPE: AMBA_AHB3,
}
Class1RomTable(
    CSComponentId {
        base_address: 0xe00ff000,
        class: RomTable,
        peripheral_id: PeripheralID {
            REVAND: 0x000000,
            CMOD: No,
            REVISION: 0x000000,
            JEP106: Some(
                JEP106Code({ cc: 0x00, id: 0x20 } => Some("STMicroelectronics")),
            ),
            PART: 0x000440,
            SIZE: 0x000001,
        },
    },
    RomTable {
        entries: [
            RomTableEntry {
                power_domain_id: 0x000000,
                power_domain_valid: false   ,
                format: true    ,
                component_data: GenericIPComponent(
                    CSComponentId {
                        base_address: 0xe000e000,
                        class: GenericIPComponent,
                        peripheral_id: PeripheralID {
                            REVAND: 0x000000,
                            CMOD: No,
                            REVISION: 0x000000,
                            JEP106: Some(
                                JEP106Code({ cc: 0x04, id: 0x3b } => Some("ARM Ltd")),
                            ),
                            PART: 0x000008,
                            SIZE: 0x000001,
                        },
                    },
                ),
            },
            RomTableEntry {
                power_domain_id: 0x000000,
                power_domain_valid: false   ,
                format: true    ,
                component_data: GenericIPComponent(
                    CSComponentId {
                        base_address: 0xe0001000,
                        class: GenericIPComponent,
                        peripheral_id: PeripheralID {
                            REVAND: 0x000000,
                            CMOD: No,
                            REVISION: 0x000000,
                            JEP106: Some(
                                JEP106Code({ cc: 0x04, id: 0x3b } => Some("ARM Ltd")),
                            ),
                            PART: 0x00000a,
                            SIZE: 0x000001,
                        },
                    },
                ),
            },
            RomTableEntry {
                power_domain_id: 0x000000,
                power_domain_valid: false   ,
                format: true    ,
                component_data: GenericIPComponent(
                    CSComponentId {
                        base_address: 0xe0002000,
                        class: GenericIPComponent,
                        peripheral_id: PeripheralID {
                            REVAND: 0x000000,
                            CMOD: No,
                            REVISION: 0x000000,
                            JEP106: Some(
                                JEP106Code({ cc: 0x04, id: 0x3b } => Some("ARM Ltd")),
                            ),
                            PART: 0x00000b,
                            SIZE: 0x000001,
                        },
                    },
                ),
            },
        ],
    },
)

@Yatekii
Copy link
Member Author

Yatekii commented Nov 17, 2019

Hey thanks for the paste! The PART should be the one from the first romtable entry. So, in this example 0x440.

@Yatekii
Copy link
Member Author

Yatekii commented Mar 13, 2020

This is not up to date anymore. See #108 #113 and #115 for more info on this.

@Yatekii Yatekii closed this as completed Mar 13, 2020
bors bot added a commit that referenced this issue Jan 4, 2021
504: Update simplelog requirement from 0.8.0 to 0.9.0 in /probe-rs-cli-util r=Yatekii a=dependabot[bot]

Updates the requirements on [simplelog](https://github.com/drakulix/simplelog.rs) to permit the latest version.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/Drakulix/simplelog.rs/blob/master/CHANGELOG.md">simplelog's changelog</a>.</em></p>
<blockquote>
<h2>v0.9.0</h2>
<pre><code>- Add customizable level label colors (PR [#69](Drakulix/simplelog.rs#69). credits to @JarrettBillingsley)
- Remove unneeded TermLogError
- Future-proof config by adding `#[non_exhaustive]`
- Fix compiling with minimal-versions
</code></pre>
<h2>v0.8.0</h2>
<pre><code>- Switch from `term` to `termcolor` (PR [#59](Drakulix/simplelog.rs#59). credits to @raybritton)
- Fix typo in docs (PR [#58](Drakulix/simplelog.rs#58), credits to @anthonyjmartinez)
- Switch default padding to `Off`. Padding is annoyingly controversal, just set it to whatever you prefer, if you want it.
</code></pre>
<h2>v0.7.6</h2>
<pre><code>- Derive `Clone`,`Copy`,`PartialEq`,`Eq`,`Debug` and `Hash` for `TerminalMode`. (PR [#56](Drakulix/simplelog.rs#56), credits to @panhania)
</code></pre>
<h2>v0.7.5</h2>
<pre><code>- Use `target()` instead of `module_path()` for filtering as suggested by `log`s docs. (PR [#52](Drakulix/simplelog.rs#52), credits to @tsidea)
- Allow logging thread names and pad thread ids (defaults match the old behaviour). (PR [#53](Drakulix/simplelog.rs#53), credits to @mulark)
</code></pre>
<h2>v0.7.4</h2>
<pre><code>- Fixed time formats with 
</code></pre>
<h2>v0.7.3</h2>
<pre><code>- Fixed `test` feature
</code></pre>
<h2>v0.7.2</h2>
<pre><code>- Allow Level Padding to be configured
</code></pre>
<h2>v0.7.1</h2>
<pre><code>- Fix `LevelFilter:Off` not turning off parts of the log messages
</code></pre>
<h2>v0.7.0</h2>
<pre><code>- Add local time zone option
- Change config to builder pattern avoiding future major version bumps
- Add further documentation about dealing with `TermLogger` failing
- `term` 0.6.* is now also supported
</code></pre>
<h2>v0.6.0</h2>
<pre><code>- Add time offset parameter (defaults to UTC)
- Add thread_id output (credits to @kurtlawrence)
- Pad log level
- Add TestLogger (credits to @AlexW-GH)
- Add stream configuration to TermLogger
- Implement allow- and ignore-filtering (credits to @ryankurte)
</code></pre>
<h2>v0.5.3</h2>
<pre><code>- Fix minimal chrono version / update to chrono v0.4.1 (PR [#27](Drakulix/simplelog.rs#27), credits to @samueltardieu)
</code></pre>
<h2>v0.5.2</h2>
<pre><code>- Don't interleave stdout and stderr (PR [#23](Drakulix/simplelog.rs#23), credits to @hansjorg)
</code></pre>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/8338b80979bcae391a8c5bc61f13e174bc118cb2"><code>8338b80</code></a> v0.9.0</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/1a1a2884cf8e85cdba6a826f304a088080444a89"><code>1a1a288</code></a> Add test for minimal-versions to travis</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/2f10cd1c358db563c07986c530b8a228ae0813d1"><code>2f10cd1</code></a> Fix -Z minimal-versions</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/1c172f6a09676e7d24eca083bf03a99ac05b93c4"><code>1c172f6</code></a> Future-proof config by requiring ..Default::default()</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/d9b78aed7ba557461053aa2cba9096562bc173d8"><code>d9b78ae</code></a> Remove unneeded TermLogError</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/bfb70b80233f9704482e3bf24fa49b4b796e1af5"><code>bfb70b8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/drakulix/simplelog.rs/issues/69">#69</a> from JarrettBillingsley/master</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/2e6e990983857cde7d07fa5faea7405afb30ddd7"><code>2e6e990</code></a> added <code>ConfigBuilder::set_level_color</code> to customize the colors of level label...</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/195361ccb8442a2f0a8ea2e40fdce6223d0cf0fa"><code>195361c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/drakulix/simplelog.rs/issues/60">#60</a> from rubenvandeven/master</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/0ab41767e2b060013b7dc3fe4dd6661ab3b5b5e5"><code>0ab4176</code></a> Remove unwrap() on TermLogger::new() in README.</li>
<li>See full diff in <a href="https://github.com/drakulix/simplelog.rs/compare/v0.8.0...v0.9.0">compare view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bors bot added a commit that referenced this issue Apr 28, 2021
588: Update simplelog requirement from 0.9.0 to 0.10.0 in /probe-rs-cli-util r=Yatekii a=dependabot[bot]

Updates the requirements on [simplelog](https://github.com/drakulix/simplelog.rs) to permit the latest version.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/Drakulix/simplelog.rs/blob/master/CHANGELOG.md">simplelog's changelog</a>.</em></p>
<blockquote>
<h2>v0.10.0</h2>
<pre><code>- Fix wrong argument naming (PR [#70](Drakulix/simplelog.rs#70), credits to @scvalex)
- *Breaking*: More color customization options (PR [#72](Drakulix/simplelog.rs#72), credits to @mrkline)
- Clarify docs on config levels
</code></pre>
<h2>v0.9.0</h2>
<pre><code>- Add customizable level label colors (PR [#69](Drakulix/simplelog.rs#69). credits to @JarrettBillingsley)
- Remove unneeded TermLogError
- Future-proof config by adding `#[non_exhaustive]`
- Fix compiling with minimal-versions
</code></pre>
<h2>v0.8.0</h2>
<pre><code>- Switch from `term` to `termcolor` (PR [#59](Drakulix/simplelog.rs#59). credits to @raybritton)
- Fix typo in docs (PR [#58](Drakulix/simplelog.rs#58), credits to @anthonyjmartinez)
- Switch default padding to `Off`. Padding is annoyingly controversal, just set it to whatever you prefer, if you want it.
</code></pre>
<h2>v0.7.6</h2>
<pre><code>- Derive `Clone`,`Copy`,`PartialEq`,`Eq`,`Debug` and `Hash` for `TerminalMode`. (PR [#56](Drakulix/simplelog.rs#56), credits to @panhania)
</code></pre>
<h2>v0.7.5</h2>
<pre><code>- Use `target()` instead of `module_path()` for filtering as suggested by `log`s docs. (PR [#52](Drakulix/simplelog.rs#52), credits to @tsidea)
- Allow logging thread names and pad thread ids (defaults match the old behaviour). (PR [#53](Drakulix/simplelog.rs#53), credits to @mulark)
</code></pre>
<h2>v0.7.4</h2>
<pre><code>- Fixed time formats with 
</code></pre>
<h2>v0.7.3</h2>
<pre><code>- Fixed `test` feature
</code></pre>
<h2>v0.7.2</h2>
<pre><code>- Allow Level Padding to be configured
</code></pre>
<h2>v0.7.1</h2>
<pre><code>- Fix `LevelFilter:Off` not turning off parts of the log messages
</code></pre>
<h2>v0.7.0</h2>
<pre><code>- Add local time zone option
- Change config to builder pattern avoiding future major version bumps
- Add further documentation about dealing with `TermLogger` failing
- `term` 0.6.* is now also supported
</code></pre>
<h2>v0.6.0</h2>
<pre><code>- Add time offset parameter (defaults to UTC)
- Add thread_id output (credits to @kurtlawrence)
- Pad log level
- Add TestLogger (credits to @AlexW-GH)
- Add stream configuration to TermLogger
- Implement allow- and ignore-filtering (credits to @ryankurte)
</code></pre>
<h2>v0.5.3</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/1d26f67c78d01f33de460b0f3e7b82863e98f743"><code>1d26f67</code></a> ci: fix tag regex</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/f3603e6fbfe62803554d19553d420510512e23dd"><code>f3603e6</code></a> v0.10.0</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/5d077b6e1abe5bfa97010b5e8f305f56a43859c5"><code>5d077b6</code></a> Use sensible workflow name</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/577a532d82e3325b553e5935cfbf246c2a2e211b"><code>577a532</code></a> Fix some unused imports when disabling default features</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/e741dd89f1a90a1730a10d38f9c6ce4a992056d3"><code>e741dd8</code></a> fix clippy lints</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/33c8ac922de1bcaf1f7cec61ae98001d600389d5"><code>33c8ac9</code></a> ci: fix minimal versions</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/e35d430e03779e1b2c2c35a3a922f93d32526a68"><code>e35d430</code></a> cargo fmt</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/951fab7ae340ead4c36d40b2f7d87f38d594dee3"><code>951fab7</code></a> typo</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/307777ac78ef302839c074a3b703bfaadfdde9ab"><code>307777a</code></a> Switch to github-actions</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/d1e80a2c6669c28e9809dd7d952fdeee0da7fd5c"><code>d1e80a2</code></a> Clarify config levels documentation</li>
<li>Additional commits viewable in <a href="https://github.com/drakulix/simplelog.rs/compare/v0.9.0...v0.10.0">compare view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bors bot added a commit that referenced this issue Nov 15, 2021
887: build(deps): update simplelog requirement from 0.10.0 to 0.11.0 in /probe-rs-cli-util r=Yatekii a=dependabot[bot]

Updates the requirements on [simplelog](https://github.com/drakulix/simplelog.rs) to permit the latest version.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/Drakulix/simplelog.rs/blob/master/CHANGELOG.md">simplelog's changelog</a>.</em></p>
<blockquote>
<h2>v0.11.0</h2>
<pre><code>- Add colored log levels using `ansi_term` (PR [#88](Drakulix/simplelog.rs#88), credits to `@manio)`
- Add target padding (PR [#85](Drakulix/simplelog.rs#85), credits to `@bytebeamio)`
- Add optional color and style support using `paris` crate (PR [#84](Drakulix/simplelog.rs#84), credits to `@manio)`
</code></pre>
<h2>v0.10.2</h2>
<pre><code>- Fix flushing with `BufferedStandardStreams` (PR [#82](Drakulix/simplelog.rs#82), credits to `@mrkline)`
</code></pre>
<h2>v0.10.1</h2>
<pre><code>- Fix TermLogger performance using `termcolor::BufferedStandardStream` (PR [#80](Drakulix/simplelog.rs#80), credits to `@mrkline)`
- Add write thread name support for `termlog` (PR [#76](Drakulix/simplelog.rs#76), credits to `@zeroflaw)`
</code></pre>
<h2>v0.10.0</h2>
<pre><code>- Fix wrong argument naming (PR [#70](Drakulix/simplelog.rs#70), credits to `@scvalex)`
- *Breaking*: More color customization options (PR [#72](Drakulix/simplelog.rs#72), credits to `@mrkline)`
- Clarify docs on config levels
</code></pre>
<h2>v0.9.0</h2>
<pre><code>- Add customizable level label colors (PR [#69](Drakulix/simplelog.rs#69). credits to `@JarrettBillingsley)`
- Remove unneeded TermLogError
- Future-proof config by adding `#[non_exhaustive]`
- Fix compiling with minimal-versions
</code></pre>
<h2>v0.8.0</h2>
<pre><code>- Switch from `term` to `termcolor` (PR [#59](Drakulix/simplelog.rs#59). credits to `@raybritton)`
- Fix typo in docs (PR [#58](Drakulix/simplelog.rs#58), credits to `@anthonyjmartinez)`
- Switch default padding to `Off`. Padding is annoyingly controversal, just set it to whatever you prefer, if you want it.
</code></pre>
<h2>v0.7.6</h2>
<pre><code>- Derive `Clone`,`Copy`,`PartialEq`,`Eq`,`Debug` and `Hash` for `TerminalMode`. (PR [#56](Drakulix/simplelog.rs#56), credits to `@panhania)`
</code></pre>
<h2>v0.7.5</h2>
<pre><code>- Use `target()` instead of `module_path()` for filtering as suggested by `log`s docs. (PR [#52](Drakulix/simplelog.rs#52), credits to `@tsidea)`
- Allow logging thread names and pad thread ids (defaults match the old behaviour). (PR [#53](Drakulix/simplelog.rs#53), credits to `@mulark)`
</code></pre>
<h2>v0.7.4</h2>
<pre><code>- Fixed time formats with 
</code></pre>
<h2>v0.7.3</h2>
<pre><code>- Fixed `test` feature
</code></pre>
<h2>v0.7.2</h2>
<pre><code>- Allow Level Padding to be configured
</code></pre>
<h2>v0.7.1</h2>
<pre><code>- Fix `LevelFilter:Off` not turning off parts of the log messages
</code></pre>
<h2>v0.7.0</h2>
<pre><code>- Add local time zone option
- Change config to builder pattern avoiding future major version bumps
</code></pre>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/ddd6e694b8b5699e04ef20cc6dbb1bbeeeb5041a"><code>ddd6e69</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/drakulix/simplelog.rs/issues/86">#86</a> from manio/master</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/e0585753a1717f0b37aa8ce6f37889f8a985d52c"><code>e058575</code></a> Update CHANGELOG.md</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/a90ab8a14ae346945ee2f449df515d0182921d9e"><code>a90ab8a</code></a> Bump version to v0.11.0 and adjust README</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/cc590d2a364433e4fcc940e16213699de1dd873d"><code>cc590d2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/drakulix/simplelog.rs/issues/88">#88</a> from manio/level-colorize</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/cda775724849ff11ac2549723496b1afa7b8a737"><code>cda7757</code></a> config: make set_write_log_enable_colors() an ansi_term feature dependant</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/3e0b33649dc9b3bfb6f01b724c9e3c5cfadaba45"><code>3e0b336</code></a> paris_macros: fix <code>this URL is not a hyperlink</code> warnings</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/feb3458fb455f357e7fbcd108d022eb7f712977f"><code>feb3458</code></a> Add a write_log_enable_colors configuration switch</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/1f76fd5a5bddc242eabf98c074a206bca0eff17e"><code>1f76fd5</code></a> introduce colored log levels using ansi_term</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/f41c17969660c2dadc7f2644700c94ea7a649458"><code>f41c179</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/drakulix/simplelog.rs/issues/85">#85</a> from bytebeamio/modulepad</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/09da042e5c5eced2781fa0e051314d814b38582a"><code>09da042</code></a> Remove modulepad example</li>
<li>Additional commits viewable in <a href="https://github.com/drakulix/simplelog.rs/compare/v0.10.0...v0.11.0">compare view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Tiwalun pushed a commit that referenced this issue Jan 13, 2023
52: Bump probe-rs-cli-util from `0f3a285` to `79a91c1` r=Tiwalun a=dependabot[bot]

Bumps [probe-rs-cli-util](https://github.com/probe-rs/probe-rs) from `0f3a285` to `79a91c1`.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/probe-rs/probe-rs/commit/79a91c1f5e11090a8344546e7b0db97f32963d98"><code>79a91c1</code></a> Merge <a href="https://github-redirect.dependabot.com/probe-rs/probe-rs/issues/313">#313</a></li>
<li><a href="https://github.com/probe-rs/probe-rs/commit/dac9b3065f725b637d04dda3546c43702d04a74a"><code>dac9b30</code></a> Fix last_byte computation.</li>
<li><a href="https://github.com/probe-rs/probe-rs/commit/2838ba8d7da26eb6ef8cc07e2b917d7ed39b9d98"><code>2838ba8</code></a> Install libftdi on Windows for the 'test' target</li>
<li><a href="https://github.com/probe-rs/probe-rs/commit/eca9c80091265124f15368e8228f16d3c6d6bd47"><code>eca9c80</code></a> Fix build</li>
<li><a href="https://github.com/probe-rs/probe-rs/commit/6bac26d15e55e3b956555b1694a013b8b980ef6b"><code>6bac26d</code></a> Merge branch 'master' into ftdi</li>
<li><a href="https://github.com/probe-rs/probe-rs/commit/20f63dc9546205c5ddcdbf6e6963cb7786a6a328"><code>20f63dc</code></a> Fix CI on Windows, don't use vendored libftdi</li>
<li>See full diff in <a href="https://github.com/probe-rs/probe-rs/compare/0f3a2856365304dd6c04fc8c28dc82f8ac06e8bb...79a91c1f5e11090a8344546e7b0db97f32963d98">compare view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

53: Bump structopt from 0.3.16 to 0.3.17 r=Tiwalun a=dependabot[bot]

Bumps [structopt](https://github.com/TeXitoi/structopt) from 0.3.16 to 0.3.17.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/TeXitoi/structopt/blob/master/CHANGELOG.md">structopt's changelog</a>.</em></p>
<blockquote>
<h1>v0.3.17 (2020-08-25)</h1>
<ul>
<li>Fixed <a href="https://github-redirect.dependabot.com/TeXitoi/structopt/issues/424">a breakage</a> with resent rustc versions
due to <code>quote_spanned</code> misuse.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/TeXitoi/structopt/commit/6a7d1802c172f9973bb86f684ab7447247db066f"><code>6a7d180</code></a> v0.3.17</li>
<li><a href="https://github.com/TeXitoi/structopt/commit/f7fcda26f4945f35adabf6b67738e4bfcd53d61a"><code>f7fcda2</code></a> Fix wrong span</li>
<li>See full diff in <a href="https://github.com/TeXitoi/structopt/compare/v0.3.16...v0.3.17">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=structopt&package-manager=cargo&previous-version=0.3.16&new-version=0.3.17)](https://help.github.com/articles/configuring-automated-security-fixes)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

3 participants