[mynewt-site] branch asf-site updated: asf-site update Fri Dec 23 18:59:12 UTC 2022

2022-12-23 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/mynewt-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 4b065f8f7d asf-site update Fri Dec 23 18:59:12 UTC 2022
4b065f8f7d is described below

commit 4b065f8f7d0823a5119bd769af1c6475f3c74dcf
Author: jenkins 
AuthorDate: Fri Dec 23 18:59:12 2022 +

asf-site update Fri Dec 23 18:59:12 UTC 2022
---
 sitemap.xml.gz| Bin 281 -> 281 bytes
 v0_9_0/sitemap.xml.gz | Bin 2209 -> 2209 bytes
 v1_0_0/sitemap.xml.gz | Bin 3216 -> 3216 bytes
 v1_1_0/sitemap.xml.gz | Bin 3446 -> 3446 bytes
 v1_2_0/sitemap.xml.gz | Bin 3469 -> 3469 bytes
 v1_3_0/sitemap.xml.gz | Bin 3466 -> 3466 bytes
 6 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/sitemap.xml.gz b/sitemap.xml.gz
index 7e5c9a83ed..b48000c1c1 100644
Binary files a/sitemap.xml.gz and b/sitemap.xml.gz differ
diff --git a/v0_9_0/sitemap.xml.gz b/v0_9_0/sitemap.xml.gz
index 13cac0f4a8..13c8a16745 100644
Binary files a/v0_9_0/sitemap.xml.gz and b/v0_9_0/sitemap.xml.gz differ
diff --git a/v1_0_0/sitemap.xml.gz b/v1_0_0/sitemap.xml.gz
index b7f8202aa3..558a5ee7af 100644
Binary files a/v1_0_0/sitemap.xml.gz and b/v1_0_0/sitemap.xml.gz differ
diff --git a/v1_1_0/sitemap.xml.gz b/v1_1_0/sitemap.xml.gz
index 2b8ff6e3b2..e0a2c60370 100644
Binary files a/v1_1_0/sitemap.xml.gz and b/v1_1_0/sitemap.xml.gz differ
diff --git a/v1_2_0/sitemap.xml.gz b/v1_2_0/sitemap.xml.gz
index 2926f5c1b5..6df037ef0c 100644
Binary files a/v1_2_0/sitemap.xml.gz and b/v1_2_0/sitemap.xml.gz differ
diff --git a/v1_3_0/sitemap.xml.gz b/v1_3_0/sitemap.xml.gz
index 386dc67af8..667d91724e 100644
Binary files a/v1_3_0/sitemap.xml.gz and b/v1_3_0/sitemap.xml.gz differ



[mynewt-nimble] branch master updated: nimble/phy/nrf5x: Fix PA for tx-tx transition

2022-12-23 Thread andk
This is an automated email from the ASF dual-hosted git repository.

andk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git


The following commit(s) were added to refs/heads/master by this push:
 new df80b4c9 nimble/phy/nrf5x: Fix PA for tx-tx transition
df80b4c9 is described below

commit df80b4c954dcfb01259fa076b2de0f84de9d8528
Author: Andrzej Kaczmarek 
AuthorDate: Fri Dec 23 11:35:07 2022 +0100

nimble/phy/nrf5x: Fix PA for tx-tx transition
---
 nimble/drivers/nrf5x/src/ble_phy.c | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/nimble/drivers/nrf5x/src/ble_phy.c 
b/nimble/drivers/nrf5x/src/ble_phy.c
index c941cde7..0663eba7 100644
--- a/nimble/drivers/nrf5x/src/ble_phy.c
+++ b/nimble/drivers/nrf5x/src/ble_phy.c
@@ -1014,7 +1014,7 @@ ble_phy_tx_end_isr(void)
 uint8_t transition;
 uint32_t rx_time;
 uint32_t tx_time;
-#if PHY_USE_FEM_LNA
+#if PHY_USE_FEM
 uint32_t fem_time;
 #endif
 uint32_t radio_time;
@@ -1096,6 +1096,11 @@ ble_phy_tx_end_isr(void)
 tx_time = NRF_TIMER0->CC[2] + tifs;
 /* Adjust for delay between EVENT_END and actual TX end time */
 tx_time += g_ble_phy_t_txenddelay[tx_phy_mode];
+
+#if PHY_USE_FEM_PA
+fem_time = tx_time - MYNEWT_VAL(BLE_FEM_PA_TURN_ON_US);
+#endif
+
 /* Adjust for delay between EVENT_READY and actual TX start time */
 tx_time -= g_ble_phy_t_txdelay[g_ble_phy_data.phy_cur_phy_mode];
 
@@ -1104,7 +1109,11 @@ ble_phy_tx_end_isr(void)
 NRF_TIMER0->EVENTS_COMPARE[0] = 0;
 phy_ppi_timer0_compare0_to_radio_txen_enable();
 
-/* TODO handle PA */
+#if PHY_USE_FEM_PA
+nrf_timer_cc_set(NRF_TIMER0, 2, fem_time);
+NRF_TIMER0->EVENTS_COMPARE[2] = 0;
+phy_fem_enable_pa();
+#endif
 
 nrf_timer_task_trigger(NRF_TIMER0, NRF_TIMER_TASK_CAPTURE3);
 if (NRF_TIMER0->CC[3] > NRF_TIMER0->CC[0]) {



[GitHub] [mynewt-nimble] andrzej-kaczmarek merged pull request #1423: nimble/phy/nrf5x: Fix PA for tx-tx transition

2022-12-23 Thread GitBox


andrzej-kaczmarek merged PR #1423:
URL: https://github.com/apache/mynewt-nimble/pull/1423


-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [mynewt-nimble] apache-mynewt-bot commented on pull request #1423: nimble/phy/nrf5x: Fix PA for tx-tx transition

2022-12-23 Thread GitBox


apache-mynewt-bot commented on PR #1423:
URL: https://github.com/apache/mynewt-nimble/pull/1423#issuecomment-1363899489

   
   
   
   ## Style check summary
   
    No suggestions at this time!
   


-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [mynewt-core] andrzej-kaczmarek merged pull request #2917: hw/mcu/nrf5340: Fix build with 6pf lfxo trim

2022-12-23 Thread GitBox


andrzej-kaczmarek merged PR #2917:
URL: https://github.com/apache/mynewt-core/pull/2917


-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[mynewt-core] branch master updated: hw/mcu/nrf5340: Fix build with 6pf lfxo trim

2022-12-23 Thread andk
This is an automated email from the ASF dual-hosted git repository.

andk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
 new 815c0a5b8 hw/mcu/nrf5340: Fix build with 6pf lfxo trim
815c0a5b8 is described below

commit 815c0a5b89dcd141ac1dfa99246846605983e612
Author: Andrzej Kaczmarek 
AuthorDate: Fri Dec 23 11:39:24 2022 +0100

hw/mcu/nrf5340: Fix build with 6pf lfxo trim
---
 hw/mcu/nordic/nrf5340/src/hal_system.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/mcu/nordic/nrf5340/src/hal_system.c 
b/hw/mcu/nordic/nrf5340/src/hal_system.c
index 7de814b96..d30743ce9 100644
--- a/hw/mcu/nordic/nrf5340/src/hal_system.c
+++ b/hw/mcu/nordic/nrf5340/src/hal_system.c
@@ -92,7 +92,7 @@ hal_system_clock_start(void)
 #if MYNEWT_VAL_CHOICE(MCU_LFCLK_XO_INTCAP, external)
 NRF_OSCILLATORS->XOSC32KI.INTCAP = 
OSCILLATORS_XOSC32KI_INTCAP_INTCAP_External;
 #elif MYNEWT_VAL_CHOICE(MCU_LFCLK_XO_INTCAP, c6pf)
-NRF_OSCILLATORS->XOSC32KI.INTCAP = OSCILLATORS_XOSC32KI_INTCAP_INTCAP_C6PF
+NRF_OSCILLATORS->XOSC32KI.INTCAP = OSCILLATORS_XOSC32KI_INTCAP_INTCAP_C6PF;
 #elif MYNEWT_VAL_CHOICE(MCU_LFCLK_XO_INTCAP, c7pf)
 NRF_OSCILLATORS->XOSC32KI.INTCAP = OSCILLATORS_XOSC32KI_INTCAP_INTCAP_C7PF;
 #elif MYNEWT_VAL_CHOICE(MCU_LFCLK_XO_INTCAP, c9pf)



[GitHub] [mynewt-core] andrzej-kaczmarek commented on a diff in pull request #2915: apps: Allow stub/full implementation of packages in syscfg

2022-12-23 Thread GitBox


andrzej-kaczmarek commented on code in PR #2915:
URL: https://github.com/apache/mynewt-core/pull/2915#discussion_r1056253553


##
apps/bleprph_oic/pkg.yml:
##
@@ -30,10 +30,10 @@ pkg.deps:
 - "@apache-mynewt-nimble/nimble/host/services/gatt"
 - "@apache-mynewt-nimble/nimble/host/store/config"
 - "@apache-mynewt-nimble/nimble/transport"
-- "@apache-mynewt-core/sys/console/full"
-- "@apache-mynewt-core/sys/log/full"
+- "@apache-mynewt-core/sys/console/"

Review Comment:
   remove trailing `/`



##
apps/bleprph_oic/syscfg.yml:
##
@@ -25,6 +25,10 @@ syscfg.defs:
 value: 0
 
 syscfg.vals:
+CONSOLE_MODE: full

Review Comment:
   I do not recall if we have `CONSOLE_MODE` instead of 
`CONSOLE_IMPLEMENTATION` for a reason, but if it's just for 'historical 
reasons' we should add `CONSOLE_IMPLEMENTATION` and deprecate `CONSOLE_MODE`.
   
   @kasjer ^^ ?



##
sys/stats/pkg.yml:
##
@@ -0,0 +1,31 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+pkg.name: sys/stats
+pkg.description: API common to both the full and stub log implementations.
+pkg.author: "Apache Mynewt "
+pkg.homepage: "http://mynewt.apache.org/;

Review Comment:
   https



-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [mynewt-core] apache-mynewt-bot commented on pull request #2918: hw/mcu/nrf5340: Add missing #include

2022-12-23 Thread GitBox


apache-mynewt-bot commented on PR #2918:
URL: https://github.com/apache/mynewt-core/pull/2918#issuecomment-1363857242

   
   
   
   ## Style check summary
   
    No suggestions at this time!
   


-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [mynewt-nimble] sjanc commented on a diff in pull request #1423: nimble/phy/nrf5x: Fix PA for tx-tx transition

2022-12-23 Thread GitBox


sjanc commented on code in PR #1423:
URL: https://github.com/apache/mynewt-nimble/pull/1423#discussion_r1056244315


##
nimble/drivers/nrf5x/src/ble_phy.c:
##
@@ -1096,6 +1096,11 @@ ble_phy_tx_end_isr(void)
 tx_time = NRF_TIMER0->CC[2] + tifs;
 /* Adjust for delay between EVENT_END and actual TX end time */
 tx_time += g_ble_phy_t_txenddelay[tx_phy_mode];
+
+#if PHY_USE_FEM_PA
+fem_time = tx_time - MYNEWT_VAL(BLE_FEM_PA_TURN_ON_US);

Review Comment:
   fem_time should now be under if PHY_USE_FEM



##
nimble/drivers/nrf5x/src/ble_phy.c:
##
@@ -1096,6 +1096,11 @@ ble_phy_tx_end_isr(void)
 tx_time = NRF_TIMER0->CC[2] + tifs;
 /* Adjust for delay between EVENT_END and actual TX end time */
 tx_time += g_ble_phy_t_txenddelay[tx_phy_mode];
+
+#if PHY_USE_FEM_PA
+fem_time = tx_time - MYNEWT_VAL(BLE_FEM_PA_TURN_ON_US);

Review Comment:
   fem_time should now be under #if PHY_USE_FEM



-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [mynewt-core] apache-mynewt-bot commented on pull request #2917: hw/mcu/nrf5340: Fix build with 6pf lfxo trim

2022-12-23 Thread GitBox


apache-mynewt-bot commented on PR #2917:
URL: https://github.com/apache/mynewt-core/pull/2917#issuecomment-1363847144

   
   
   
   ## Style check summary
   
    No suggestions at this time!
   


-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [mynewt-core] apache-mynewt-bot commented on pull request #2917: hw/mcu/nrf5340: Fix build with 6pf lfxo trim

2022-12-23 Thread GitBox


apache-mynewt-bot commented on PR #2917:
URL: https://github.com/apache/mynewt-core/pull/2917#issuecomment-1363837027

   
   
   
   ## Style check summary
   
    No suggestions at this time!
   


-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [mynewt-nimble] apache-mynewt-bot commented on pull request #1423: nimble/phy/nrf5x: Fix PA for tx-tx transition

2022-12-23 Thread GitBox


apache-mynewt-bot commented on PR #1423:
URL: https://github.com/apache/mynewt-nimble/pull/1423#issuecomment-1363833962

   
   
   
   ## Style check summary
   
    No suggestions at this time!
   


-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [mynewt-core] apache-mynewt-bot commented on pull request #2916: Update depracted clock source settings

2022-12-23 Thread GitBox


apache-mynewt-bot commented on PR #2916:
URL: https://github.com/apache/mynewt-core/pull/2916#issuecomment-1363732947

   
   
   
   ## Style check summary
   
    No suggestions at this time!
   


-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [mynewt-core] m-gorecki opened a new pull request, #2916: Update depracted clock source settings

2022-12-23 Thread GitBox


m-gorecki opened a new pull request, #2916:
URL: https://github.com/apache/mynewt-core/pull/2916

   XTAL_32768, XTAL_RC, XTAL_32786_SYNTH are now depracted and we should use 
MCU_LFCLK_SOURCE setting instead.


-- 
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 to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org