summaryrefslogtreecommitdiff
path: root/samples/ipm
AgeCommit message (Collapse)Author
2017-01-19license: Replace Apache boilerplate with SPDX tagDavid B. Kinder
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-01-08kernel: remove dependency on CONFIG_NANO_TIMERS/TIMEOUTSAnas Nashif
Remove legacy option and use SYS_CLOCK_EXISTS where appropriate. Change-Id: I3d524ea2776e638683f0196c0cc342359d5d810f Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-11-13samples: ipm: convert sample to use unified APIsAnas Nashif
Change-Id: Ibeadd2e8d9efa2380f21a091ab5645c4b69a4841 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-11-04samples: tests: remove obsolete KERNEL_TYPE and kernel variablesAnas Nashif
Remove those from Makefiles and testcase.ini, we now support unified kernel only and sanitycheck script now knows how to deal with this. Change-Id: I853ebcadfa7b56a4de5737d95f2ba096babb2e13 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-10-17samples/ipm: fix markupInaky Perez-Gonzalez
Old markup was using %(target)s, which is not the right markup to use, so it was faiing to build. Change-Id: Idbe99cfdd695284dc2a66e5823bc65a1417fbfd3 Signed-off-by: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
2016-09-24samples: remove unused MDEF fileAnas Nashif
This is a nanokernel sample and the MDEF file is not being used at all. Change-Id: I344adfa9394329258144de88521764974238f6a3 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-09-16boards: rename Quark SE Devboard to Quark SE C1000Anas Nashif
This board now has an official name and will be available soon: http://www.intel.com/content/www/us/en/embedded/products/quark/mcu/se-soc/overview.html Jira: ZEP-758 Change-Id: Ia16d33722308cf81471321c3063bdc75055a4d50 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-09-16boards: rename Quark SE Devboard to Quark SE C1000 (Sensor Subsystem)Anas Nashif
Jira: ZEP-758 Change-Id: I8ee5a2f9e4a6ecbd15214e59321bf27a502ef6ee Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-08-28samples: ipm: fix incorrect printk() usageAndrew Boie
Change-Id: I276963e69fd0e3430d1f946b2062ed29fec5c03d Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2016-08-12samples: ipm_demo: build for sanitycheck runsv1.5.0-rc2Andrew Boie
Change-Id: I9835ffee5e24cf018d97723cb984ce495ca2dd0f Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2016-07-28samples: removed nonexistant CONFIG_NS16550 Kconfig symbolKumar Gala
The prj.conf files set CONFIG_NS16550=n. The symbol should be CONFIG_UART_NS16550. However, its not necessary to set this at all as CONFIG_SERIAL=n will guard the UART driver symbol. Change-Id: If7c40b649a94c869b13e009f67703b48e66e764f Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2016-07-26testcases: add automation markup to samples/Inaky Perez-Gonzalez
Code in samples does not follow an standarized format for reporting success or operation failure -- thus we use markup (in file sample.tc) to specify what shall be found in the console to consider execution a success. There is a few functional code modifications that add/extend console messages so verification is possible or easier: - hello_world, synchronization: extend the success message to also print which core is running the testcase - pci_enum: print message on success. Change-Id: Idb6cea03adebe97d97854603f963f4e3d4cb856a Signed-off-by: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
2016-06-30build: move from srctree to ZEPHYR_BASE for app include pathsKumar Gala
$srctree for the application might not be set to be $ZEPHYR_BASE, use $ZEPHYR_BASE instead to be more explicit in the build. Change-Id: Iefa5ff59f246b584949329044f7a6531adc6ed62 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2016-04-20samples: ipm: reset kernel binary name to zephyrAnas Nashif
Those samples are confusing test suites by not generating the expected zephyr.bin binary. Change-Id: I4fb81782bacafb4f259e088df4b2518faa6f47cf Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-03-09ipm: add demo code for inter-processor mailboxesAndrew Boie
Migrated from internal repository. Run "make flash" for each on the same Arduino 101 device. Origin: Original code, Zephyr "hello world" used as a starting point Change-Id: I3fdeed6b7e85ad703983c2674e265c85a365ce5b Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>