[GitHub] [mynewt-newtmgr] rmal30 opened a new pull request #172: Change MaxRxOff to be a 32-bit integer

2020-08-26 Thread GitBox
rmal30 opened a new pull request #172: URL: https://github.com/apache/mynewt-newtmgr/pull/172 Reduce resolution of the integer variable MaxRxOff from 64-bit to 32-bit, to fix the issue where LoadInt64 crashes with a segmentation fault on Raspberry Pi 3B+ and other 32-bit ARM hardware. Addr

[GitHub] [mynewt-core] utzig merged pull request #2362: apps/rust_blinky: Add blinky app using Rust language

2020-08-26 Thread GitBox
utzig merged pull request #2362: URL: https://github.com/apache/mynewt-core/pull/2362 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go t

[mynewt-core] 01/02: apps/rust_blinky: Add blinky app using Rust language

2020-08-26 Thread utzig
This is an automated email from the ASF dual-hosted git repository. utzig pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-core.git commit 838cee6d153a9373dfe7f16ec0fd0dbe6eb8e8b5 Author: Casper Meijn AuthorDate: Sat Aug 22 15:03:06 2020 +0200 apps/r

[mynewt-core] 02/02: apps/rust_blinky: Use bindgen to convert C-header to Rust

2020-08-26 Thread utzig
This is an automated email from the ASF dual-hosted git repository. utzig pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-core.git commit 529d38f7d98b07de40b3c6c84ebe5edcb9415469 Author: Casper Meijn AuthorDate: Sun Aug 23 08:54:53 2020 +0200 apps/r

[mynewt-core] branch master updated (9609bf5 -> 529d38f)

2020-08-26 Thread utzig
This is an automated email from the ASF dual-hosted git repository. utzig pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-core.git. from 9609bf5 hw/mcu/dialog: Make 1V8 and 1V8P rails configurable new 838cee6 apps/rust_blinky: Add blinky app u

[GitHub] [mynewt-core] JustineKH edited a comment on pull request #2359: hw/mcu/dialog: Add all reset reason checks

2020-08-26 Thread GitBox
JustineKH edited a comment on pull request #2359: URL: https://github.com/apache/mynewt-core/pull/2359#issuecomment-681173556 @andrzej-kaczmarek I agree that this list of reboot reasons could get out of control if we keep adding non-standard reasons. Could we just add a callback functio

[GitHub] [mynewt-core] JustineKH commented on pull request #2359: hw/mcu/dialog: Add all reset reason checks

2020-08-26 Thread GitBox
JustineKH commented on pull request #2359: URL: https://github.com/apache/mynewt-core/pull/2359#issuecomment-681173556 @andrzej-kaczmarek I agree that this list of reboot reasons could get out of control if we keep adding non-standard reasons. Could we just add a callback function for t

[GitHub] [mynewt-core] andrzej-kaczmarek commented on pull request #2359: hw/mcu/dialog: Add all reset reason checks

2020-08-26 Thread GitBox
andrzej-kaczmarek commented on pull request #2359: URL: https://github.com/apache/mynewt-core/pull/2359#issuecomment-681096565 my proposal to fix this would be as follows: - add smth like `HAL_RESET_OTHER = 256` for any reset reason that is specific for MCU, that means it neither maps to

[mynewt-core] branch master updated (85be100 -> 9609bf5)

2020-08-26 Thread andk
This is an automated email from the ASF dual-hosted git repository. andk pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-core.git. from 85be100 Update port_bsp.rst add 9609bf5 hw/mcu/dialog: Make 1V8 and 1V8P rails configurable No new revisio

[GitHub] [mynewt-core] andrzej-kaczmarek merged pull request #2358: hw/mcu/dialog: Make 1V8 and 1V8P rails configurable

2020-08-26 Thread GitBox
andrzej-kaczmarek merged pull request #2358: URL: https://github.com/apache/mynewt-core/pull/2358 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL a

[GitHub] [mynewt-core] apache-mynewt-bot removed a comment on pull request #2362: apps/rust_blinky: Add blinky app using Rust language

2020-08-26 Thread GitBox
apache-mynewt-bot removed a comment on pull request #2362: URL: https://github.com/apache/mynewt-core/pull/2362#issuecomment-678738162 ## Style check summary No suggestions at this time! This is an

[GitHub] [mynewt-core] apache-mynewt-bot commented on pull request #2362: apps/rust_blinky: Add blinky app using Rust language

2020-08-26 Thread GitBox
apache-mynewt-bot commented on pull request #2362: URL: https://github.com/apache/mynewt-core/pull/2362#issuecomment-681028192 ## Style check summary No suggestions at this time! This is an automat

[GitHub] [mynewt-core] caspermeijn commented on pull request #2362: apps/rust_blinky: Add blinky app using Rust language

2020-08-26 Thread GitBox
caspermeijn commented on pull request #2362: URL: https://github.com/apache/mynewt-core/pull/2362#issuecomment-681023152 Updated the commit. I fixed the license, removed the clang target and silenced the "is never used" warnings. ---

[GitHub] [mynewt-core] caspermeijn commented on a change in pull request #2362: apps/rust_blinky: Add blinky app using Rust language

2020-08-26 Thread GitBox
caspermeijn commented on a change in pull request #2362: URL: https://github.com/apache/mynewt-core/pull/2362#discussion_r477468477 ## File path: apps/rust_blinky/build.rs ## @@ -0,0 +1,70 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + * Copyright 2020 Casper Meijn + * + * L

[GitHub] [mynewt-core] caspermeijn commented on a change in pull request #2362: apps/rust_blinky: Add blinky app using Rust language

2020-08-26 Thread GitBox
caspermeijn commented on a change in pull request #2362: URL: https://github.com/apache/mynewt-core/pull/2362#discussion_r477468188 ## File path: apps/rust_blinky/src/lib.rs ## @@ -0,0 +1,54 @@ +/* + * Copyright 2020 Casper Meijn + * + * Licensed under the Apache License, Vers

[GitHub] [mynewt-mcumgr-cli] caco3 commented on issue #15: Fails to upload over BLE using Zephyr with SMP Server Sample

2020-08-26 Thread GitBox
caco3 commented on issue #15: URL: https://github.com/apache/mynewt-mcumgr-cli/issues/15#issuecomment-680941104 Thanks for your work! I am currently on holiday and will test it in 2 weeks. This is an automated message fro

[GitHub] [mynewt-core] sjanc commented on pull request #2282: Add initial support for Nordic nRF5340

2020-08-26 Thread GitBox
sjanc commented on pull request #2282: URL: https://github.com/apache/mynewt-core/pull/2282#issuecomment-680828221 https://github.com/apache/mynewt-nimble/pull/841 was updated with HCI transport utilizing IPC allowing to run controller on network core and host on application core. --

[GitHub] [mynewt-core] sjanc edited a comment on pull request #2282: Add initial support for Nordic nRF5340

2020-08-26 Thread GitBox
sjanc edited a comment on pull request #2282: URL: https://github.com/apache/mynewt-core/pull/2282#issuecomment-654853444 main missing points: - option to set app core into insecure mode - support for passing GPIO control to network core

[GitHub] [mynewt-nimble] apache-mynewt-bot commented on pull request #841: nimble/drivers: Add support for nRF5340 radio

2020-08-26 Thread GitBox
apache-mynewt-bot commented on pull request #841: URL: https://github.com/apache/mynewt-nimble/pull/841#issuecomment-680827632 ## Style check summary ### Our coding style is [here!](https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md) nim

[GitHub] [mynewt-nimble] apache-mynewt-bot removed a comment on pull request #841: nimble/drivers: Add support for nRF5340 radio

2020-08-26 Thread GitBox
apache-mynewt-bot removed a comment on pull request #841: URL: https://github.com/apache/mynewt-nimble/pull/841#issuecomment-656629100 ## Style check summary ### Our coding style is [here!](https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md)

[GitHub] [mynewt-core] apache-mynewt-bot removed a comment on pull request #2282: Add initial support for Nordic nRF5340

2020-08-26 Thread GitBox
apache-mynewt-bot removed a comment on pull request #2282: URL: https://github.com/apache/mynewt-core/pull/2282#issuecomment-654905076 ## Style check fail: Payload was too large This is an automated message from the Apach

[GitHub] [mynewt-core] apache-mynewt-bot removed a comment on pull request #2282: Add initial support for Nordic nRF5340

2020-08-26 Thread GitBox
apache-mynewt-bot removed a comment on pull request #2282: URL: https://github.com/apache/mynewt-core/pull/2282#issuecomment-654904646 ## RAT Report (2020-07-07 14:31:11) ## New files with unknown licenses * https://github.com/apache/mynewt-core/blob/e979fe577ecd15a

[GitHub] [mynewt-core] apache-mynewt-bot commented on pull request #2282: Add initial support for Nordic nRF5340

2020-08-26 Thread GitBox
apache-mynewt-bot commented on pull request #2282: URL: https://github.com/apache/mynewt-core/pull/2282#issuecomment-680826246 ## Style check fail: Payload was too large This is an automated message from the Apache Git Se

[GitHub] [mynewt-core] apache-mynewt-bot commented on pull request #2282: Add initial support for Nordic nRF5340

2020-08-26 Thread GitBox
apache-mynewt-bot commented on pull request #2282: URL: https://github.com/apache/mynewt-core/pull/2282#issuecomment-680826068 ## RAT Report (2020-08-26 11:38:04) ## New files with unknown licenses * https://github.com/apache/mynewt-core/blob/6ed171c61f64ddfef471f45