Re: [VOTE] Graduation of podling Apache Mynewt to Top Level Project

2017-05-26 Thread Justin Mclean
Hi, +1 good luck (not that you need it) and congratulations Thanks, Justin

Re: Problems with erasing flash on nordic devices

2017-05-26 Thread Jacob Rosenthal
Just trying to cargo cult what chris said. whats appropriate? uint32_t? Could be related, but what Im seeing is data after flash_area_read before erase (gdb) p data $1 = {3735928559 , 126616, 46299, 1, 45733, 1, 145408, 112640, 112640, 128076, 103483, 1, 127960, 536872908, 43465, 4294967295,

Re: [VOTE] Graduation of podling Apache Mynewt to Top Level Project

2017-05-26 Thread Kevin Townsend
+1 On 26/05/17 02:55, aditi hilbert wrote: Hi all, We feel confident that we pass all the requirements to graduate. Below is the proposed Graduation Resolution (based on the standard template). A separate thread of DISCUSS is also open for this. The full text of the proposed resolution is

Re: [VOTE] Graduation of podling Apache Mynewt to Top Level Project

2017-05-26 Thread Christopher Collins
+1 Chris On Thu, May 25, 2017 at 05:55:26PM -0700, aditi hilbert wrote: > Hi all, > > We feel confident that we pass all the requirements to graduate. Below is > the proposed Graduation Resolution (based on the standard template). A > separate thread of DISCUSS is also open for this. > >

Apache Mynewt podling graduation on vote on dev@mynewt.incubator.apache.org

2017-05-26 Thread aditi hilbert
The Apache Mynewt podling team is pleased to announce that the project is currently undergoing voting for graduation to TLP on the dev@mynewt.incubator.apache.org mailing list. Subsequent to successful voting on dev@ list, it will be put to vote on the

Re: [VOTE] Graduation of podling Apache Mynewt to Top Level Project

2017-05-26 Thread Sterling Hughes
+1 On 26 May 2017, at 12:17, aditi hilbert wrote: +1 This thread will be open until 6 PM PDT on May 30, 2017 (extra time because of Memorial Day). thanks, aditi On May 25, 2017, at 5:55 PM, aditi hilbert wrote: Hi all, We feel confident that we pass all the

Re : Re: [DISCUSS] Graduation of podling Apache Mynewt to Top Level Project

2017-05-26 Thread Contact & support
unsubscribe Le 26/05/2017 13:12:41, Jim Jagielski a écrit : Ha! :) > On May 25, 2017, at 9:55 PM, Sheela Kiiskila wrote: > > Changes done to the Resolution. Justin gets the only * for agreeing to be the > VP:) > > https://cwiki.apache.org/confluence/display/MYNEWT/Resolution >

Re: [DISCUSS] Graduation of podling Apache Mynewt to Top Level Project

2017-05-26 Thread Jim Jagielski
On the general topic of whether or not MyNewt is ready, I think, and would/will vote, YES!

Re: nRF52 without J-Link?

2017-05-26 Thread Simon Ratner
Marko, Do you happen to have a link to the patches you applied to openocd? I am building my own, and would like to incorporate them. Cheers, simon On Thu, May 25, 2017 at 3:39 PM, marko kiiskila wrote: > Peter, > > What’s missing from stock 0.10.0 for nrf52 is the

Re: Problems with erasing flash on nordic devices

2017-05-26 Thread Simon Ratner
At a glance, you are confusing bytes with ints (data is declared as unsigned int), so for the most part you are comparing uninitialised stack memory. Hth, simon On Thu, May 25, 2017 at 11:04 PM, Jacob Rosenthal wrote: > Pushed something like you described, new

Re: Problems with erasing flash on nordic devices

2017-05-26 Thread Jacob Rosenthal
Pushed something like you described, new flash_area_is_empty function in flash_map https://github.com/apache/incubator-mynewt-core/pull/281 Currently doesnt actually work.. either my code sucks or the erase doesnt actually ever succeed on nrf51 is is leaving behind non 0xff bytes.. not sure which