Re: [VOTE] Release Apache Mynewt 1.2.0-rc1

2017-09-11 Thread Michał Narajowski
+1 (binding) 2017-09-11 9:51 GMT+02:00 Łukasz Rymanowski : > +1 (binding) > > Łukasz > > On 10 September 2017 at 20:49, aditi hilbert wrote: >> +1 >> >> thanks, >> aditi >> >>> On Sep 8, 2017, at 11:54 AM, Szymon Janc wrote: >>>

Re: [VOTE] Release Apache Mynewt 1.2.0-rc1

2017-09-11 Thread Fabio Utzig
+1 (binding) On Mon, Sep 11, 2017, at 06:33 AM, Michał Narajowski wrote: > +1 (binding) > > 2017-09-11 9:51 GMT+02:00 Łukasz Rymanowski > : > > +1 (binding) > > > > Łukasz > > > > On 10 September 2017 at 20:49, aditi hilbert wrote: > >> +1 > >> >

Re: Trimming controller code size with BLE_EXT_ADV

2017-09-11 Thread Szymon Janc
Hi, On Thursday, 7 September 2017 20:49:35 CEST Simon Ratner wrote: > Hi devs, > > Controller code size went from 20k -> 29k with 1_2_0 and BLE_EXT_ADV, > compared to the old BLE_MULTI_ADV_SUPPORT. This happens to be just a bit to > big for our nrf51-based target. > > Any suggestions on

Re: [VOTE] Release Apache Mynewt 1.2.0-rc1

2017-09-11 Thread Wayne Keenan
+1 Thanks Wayne > On 11 Sep 2017, at 09:51, Łukasz Rymanowski > wrote: > > +1 (binding) > > Łukasz > >> On 10 September 2017 at 20:49, aditi hilbert wrote: >> +1 >> >> thanks, >> aditi >> >>> On Sep 8, 2017, at 11:54 AM, Szymon Janc

Re: [VOTE] Release Apache Mynewt 1.2.0-rc1

2017-09-11 Thread Alfred Schilken
+1 blinky is running on Calliope Mini with tiny modification because there is no LED directly connected to a single GPIO the LED matrix needs so set two GPIOs ( same on BBC Microbit ) Maybe future version of blinky should handle this with #if sysinit(); hal_gpio_init_out(14, 1);

Re: Trimming controller code size with BLE_EXT_ADV

2017-09-11 Thread Wayne Keenan
Hi, Being able to disable parts of the Nimble stack to reduced code (and RAM) size is a compelling feature of MyNewt/Nimble, I'd like to see as many tweak-ables as is sane. The Host not being 100% compliant is fine in my mind for some learning/experimenting/tinkering use cases. Automated

Re: [VOTE] Release Apache Mynewt 1.2.0-rc1

2017-09-11 Thread Łukasz Rymanowski
+1 (binding) Łukasz On 10 September 2017 at 20:49, aditi hilbert wrote: > +1 > > thanks, > aditi > >> On Sep 8, 2017, at 11:54 AM, Szymon Janc wrote: >> >> Hello all, >> >> I am pleased to be calling this vote for the source release of >> Apache Mynewt 1.2.0.

Re: Trimming controller code size with BLE_EXT_ADV

2017-09-11 Thread will sanfilippo
It is still possible but that affects the host much more than the controller. I am sure more could be done in the controller to separate the two. > On Sep 11, 2017, at 8:09 AM, Wayne Keenan wrote: > > In MyNewt 0.9 it was/is possible to undef the Central role. Is that

Re: Trimming controller code size with BLE_EXT_ADV

2017-09-11 Thread will sanfilippo
There were always plans to separate central from peripheral in the controller to save space but was never added since we always seemed to manage to fit it by doing other things. I think separating these two is a good idea for those who need the flash. Just my two cents. Will > On Sep 11,

Re: Trimming controller code size with BLE_EXT_ADV

2017-09-11 Thread Wayne Keenan
In MyNewt 0.9 it was/is possible to undef the Central role. Is that no longer possible in 1.2? (Sorry, I'd check but I'm on the road in France) Thanks Wayne > On 11 Sep 2017, at 16:28, will sanfilippo wrote: > > There were always plans to separate central from peripheral in

Re: Trimming controller code size with BLE_EXT_ADV

2017-09-11 Thread Simon Ratner
@Szymon: Originally I was 6kb short, but managed to scrape together enough space from other areas (such as disabling a couple of GATT procs that I wasn't using, eliminating a 64-bit division here or there -- watch out for those -- etc). This still doesn't leave much room for additional application