Re: Sleep modes in mynewt

2018-06-28 Thread will sanfilippo
Generally speaking it is up to the developer to implement various “low power states” for their application. If you are running on a cortex-M processor the OS uses “tickless idle”. This means that the CPU is halted on a WFI instruction until the OS needs to do something next. Other than that the

Sleep modes in mynewt

2018-06-28 Thread Amr Bekhit
Hello, What's the status of sleep/power saving in mynewt? Does mynewt have any support for bringing the CPU into various sleep modes? Does the system go into sleep mode during the idle task (I've done some digging - I don't think it does)? I've done some search in the source for 1.4.0 and found

[RESULT][VOTE] Release Apache Mynewt 1.4.1-rc1

2018-06-28 Thread Szymon Janc
Hello all, Voting for Apache Mynewt 1.4.1 is now closed. The release has passed this step of the process. The vote breakdown is as follows: +1 Christopher Collins (binding) +1 Fabio Utzig (binding) +1 Sterling Hughes (binding) +1 Aditi Hilbert (binding) +1 Vipul Rahane (binding) +1

Re: HCI UART with console UART

2018-06-28 Thread Andrzej Kaczmarek
Hi, You need to configure different UARTs for HCI transport and console: - BLE_HCI_UART_PORT - CONSOLE_UART_DEV By default both use UART0. Best, Andrzej On Thu, Jun 28, 2018 at 3:18 AM Jeff Belz wrote: > > All: > > I have to use uart0 as the HCI, but I want to use the console too. Anyone >