[dev] IoTivity Engineering Snapshot for PF13

2017-07-08 Thread 최우제
HTML ?? ??...
URL: 
<http://lists.iotivity.org/pipermail/iotivity-dev/attachments/20170708/e08a7294/attachment.html>
-- next part --
A non-text attachment was scrubbed...
Name: ?? ?? .
Type: image/gif
Size: 13402 bytes
Desc: ?? ?? .
URL: 
<http://lists.iotivity.org/pipermail/iotivity-dev/attachments/20170708/e08a7294/attachment.gif>


[dev] Cross compile Iotivity for arm

2017-07-08 Thread Natalia Theologou
Hello,


I am trying to cross compile iotivity for arm architecture. I am getting the 
error that it can not find boost_thread.

I found out that I have to cross compile all the libs that I want (boost, 
gtest0 from a previous thread.

What is the best way to do this? Has anyone resolved this issue?
I took the steps according this 
advice<https://stackoverflow.com/questions/29029867/cross-compile-boost-1-57-0-on-ubuntu-for-arm>.
 But I keep getting the error.


Thanks in advance.


BR, Natalia
-- next part --
An HTML attachment was scrubbed...
URL: 
<http://lists.iotivity.org/pipermail/iotivity-dev/attachments/20170708/fe2461a6/attachment.html>


[dev] Cross compile Iotivity for arm

2017-07-08 Thread Mats Wichmann
On 07/08/2017 09:42 AM, Natalia Theologou wrote:
> Hello,
> 
> 
> I am trying to cross compile iotivity for arm architecture. I am getting the 
> error that it can not find boost_thread.
> 
> I found out that I have to cross compile all the libs that I want (boost, 
> gtest0 from a previous thread.
> 
> What is the best way to do this? Has anyone resolved this issue?
> I took the steps according this 
> advice.
>  But I keep getting the error.


The library check has to happen with the cross-build environment
completely set up. Can you share how you are calling scons (the setting
for TC_PATH in particular)?

It might even be interesting to dump your construction environment - in
build_common/SConscript, you can stick this line in at the end, just
before the last line Return('env'):

print env.Dump()

this will show a lot about your setup, before anything starts running
(and failing).


[dev] [notice] IoTivity Gerrit Maintainence - Sat, July 8th 2017, 9AM - 10AM PDT

2017-07-08 Thread Trevor Bramwell
All,

This work is now complete and has the case-sensitive login issue has
been fixed.

If you still have any issues logging in please reach out at
helpdesk at iotivity.org, and thank you for your patience!

Regards,
Trevor Bramwell

On Sat, Jul 08, 2017 at 08:48:57AM -0700, Trevor Bramwell wrote:
> All,
> 
> This work will begin shortly.
> 
> Regard,
> Trevor Bramwell
> 
> On Fri, Jul 07, 2017 at 11:14:33AM -0700, Trevor Bramwell wrote:
> > When   : Sat, 2017-07-08, 9AM-10AM PDT (17:00-18:00 UTC)
> > What   : Gerrit Restart
> > Why: Change in Gerrit Configuration
> > Impact : Brief outage as Gerrit is restart
> > 
> > We will be restarting Gerrit (gerrit.iotivity.org) in order to fix a
> > configuration error preventing users with case-sensitive Linux Foundation
> > IDs from logging in.
> > 
> > This should only cause a brief ( < 15 minutes) outage as Gerrit is 
> > restarted.
> > 
> > If you have any questions or concerns, please reach out through
> > helpdesk at iotivity.org. Notices will be sent to the list prior to and
> > after, updates.
> > 
> > Regards,
> > Trevor Bramwell
> 
> 


-- next part --
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: not available
URL: 
<http://lists.iotivity.org/pipermail/iotivity-dev/attachments/20170708/52f6c6ad/attachment.sig>


[dev] [notice] IoTivity Gerrit Maintainence - Sat, July 8th 2017, 9AM - 10AM PDT

2017-07-08 Thread Trevor Bramwell
All,

This work will begin shortly.

Regard,
Trevor Bramwell

On Fri, Jul 07, 2017 at 11:14:33AM -0700, Trevor Bramwell wrote:
> When   : Sat, 2017-07-08, 9AM-10AM PDT (17:00-18:00 UTC)
> What   : Gerrit Restart
> Why: Change in Gerrit Configuration
> Impact : Brief outage as Gerrit is restart
> 
> We will be restarting Gerrit (gerrit.iotivity.org) in order to fix a
> configuration error preventing users with case-sensitive Linux Foundation
> IDs from logging in.
> 
> This should only cause a brief ( < 15 minutes) outage as Gerrit is restarted.
> 
> If you have any questions or concerns, please reach out through
> helpdesk at iotivity.org. Notices will be sent to the list prior to and
> after, updates.
> 
> Regards,
> Trevor Bramwell


-- next part --
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: not available
URL: 
<http://lists.iotivity.org/pipermail/iotivity-dev/attachments/20170708/b46fc868/attachment.sig>


[dev] OIC Protocol - Blood Pressure

2017-07-08 Thread VanCutsem, Geoffroy
Hi Natalia,

One way would be indeed to have a plugin that is able to talk to y our non-OIC 
blood pressure device.

Another approach that my team has taken while developing our IoT to Cloud Smart 
Home demo is to have a rather simple app written in JavaScript that talks to 
that non-OIC device and leverages iotivity-node, the IoTivity node.js bindings 
to expose it as one OIC/OCF device. You can find an example of such app that 
communicates with an environmental sensor over the ESS (Environmental Sensing) 
service (BLE GATT) here: 
https://github.com/01org/SmartHome-Demo/blob/master/ocf-servers/js-servers/environmental_sensor.js.

I hope this helps.

Geoffroy


From: iotivity-dev-bounces at lists.iotivity.org 
[mailto:iotivity-dev-boun...@lists.iotivity.org] On Behalf Of Natalia Theologou
Sent: Wednesday, July 5, 2017 6:52 PM
To: iotivity-dev at lists.iotivity.org
Subject: Re: [dev] OIC Protocol - Blood Pressure


Hello,



If i want to integrate a non-OIC device to IoTivity  I find out that I have to 
change resource encapsulation. I am assuming that I have to make a similar 
project like the Hue bundle at resource container in order to make the device 
compliant with the OIC protocol.

The procedure is just to change the src code and the libraries? After that to 
compile and have the ContainerSample and the ContainerSampleClient?



I am trying to figure out how it works.
Thank you in advance.



Natalia


From: iotivity-dev-bounces at lists.iotivity.org mailto:iotivity-dev-bounces at lists.iotivity.org>> on 
behalf of Natalia Theologou mailto:natalia_t...@hotmail.com>>
Sent: Friday, June 30, 2017 3:25 PM
To: iotivity-dev at lists.iotivity.org
Subject: [dev] OIC Protocol - Blood Pressure


Hello,

I am searching for the OIC protocol for a  blood pressure device in the OIC 
DEVICE SPECIFICATION but I can not find anything. Also nothing at oneiota 
https://oneiota.org/documents?filter%5Bmedia_type%5D=application%2Framl%2Byaml. 
I am pretty sure that there was one there.

If anyone knows anything let me know.



Thank you.
OCF 
oneIoTA
oneiota.org
Filename Type Date Organization Release Proposals Versions; acceleration.raml: 
RAML: 12 November, 7:17PM (2016) (UTC) OCF: 2: activityCount.raml: RAML: 7 
July, 2:36AM ...


-- next part --
An HTML attachment was scrubbed...
URL: