Re: Can't build from source

2018-06-18 Thread Wanda Chiu
newt 1.4.0 requires Go version 1.10. Please see https://golang.org/dl/ to upgrade Thanks,Wanda From: FTDSB To: dev@mynewt.apache.org Sent: Monday, June 18, 2018 9:29 PM Subject: Can't build from source I tried building the 1.4.0 distribution from source tonight on a Centos 7.4

Can't build from source

2018-06-18 Thread FTDSB
I tried building the 1.4.0 distribution from source tonight on a Centos 7.4 machine and I got the following error: [root@localhost apache-mynewt-newt-1.4.0]# make ./build.sh Building newt.  This may take a minute... # mynewt.apache.org/newt/newt/builder builder/targetbuild.go:380:15: undefined:

Re: Bluetooth certification

2018-06-18 Thread aditi hilbert
Hi David, Runtime has qualified the NimBLE host stack just released (version 1.0.0). The QDID is 64 and you can use it for your product listing. https://launchstudio.bluetooth.com/ListingDetails/59050 Runtime is in the process of

Bluetooth certification

2018-06-18 Thread david zuhn
What is the current state of Bluetooth Certification for the MyNewt/NimBLE stack? I'm looking at the need for certification(s) to get a device to market, and using an already FCC certified hardware module (based on nRF52) seems to solve one side of the problem. The software is another case:

Re: config id package usage

2018-06-18 Thread marko kiiskila
> On Jun 16, 2018, at 9:34 AM, Jacob Rosenthal wrote: > > I think you're saying create a CONFIG_NVMC much like we have CONFIG_FCB and > CONFIG_NFFS > > Looking more into the config system > "Configuration items are stored as key-value pairs, where both the key and > the value are expected to

Re: nvic settings failing

2018-06-18 Thread Fabio Utzig
Hi Jan, We set all but a few IRQ handlers to "os_default_irq_asm" on initialization. What you have to do is to set your handler with: NVIC_SetVector(DMA2_Stream0_IRQn, (uint32_t)DMA2_Stream0_IRQHandler); NVIC_EnableVector(DMA2_Stream0_IRQn); PS: No need to use the "HAL_" macros from STM32Cube