diff options
author | João Paulo Rechi Vita <jprvita@gmail.com> | 2013-12-27 18:09:07 -0300 |
---|---|---|
committer | João Paulo Rechi Vita <jprvita@gmail.com> | 2013-12-27 18:09:07 -0300 |
commit | 75f305201cb21650e579d9318beebd6aecdfde68 (patch) | |
tree | d53a6fb537cc8646b657d1811a8d09d4030ce28a /examples/ll-broadcaster | |
parent | d60977e7a0715786467aa8d817d7812b3993687a (diff) |
Diffstat (limited to 'examples/ll-broadcaster')
-rw-r--r-- | examples/ll-broadcaster/Makefile | 7 | ||||
-rw-r--r-- | examples/ll-broadcaster/main.c | 44 |
2 files changed, 51 insertions, 0 deletions
diff --git a/examples/ll-broadcaster/Makefile b/examples/ll-broadcaster/Makefile new file mode 100644 index 0000000..e8c2c8b --- /dev/null +++ b/examples/ll-broadcaster/Makefile @@ -0,0 +1,7 @@ +# Makefile for radio-broadcaster example + +PROJECT_TARGET = ll-broadcaster-example +PROJECT_SOURCE_FILES = main.c + +BLESTACK_PATH = ../.. +-include $(BLESTACK_PATH)/Makefile.common diff --git a/examples/ll-broadcaster/main.c b/examples/ll-broadcaster/main.c new file mode 100644 index 0000000..b085dd1 --- /dev/null +++ b/examples/ll-broadcaster/main.c @@ -0,0 +1,44 @@ +/** + * The MIT License (MIT) + * + * Copyright (c) 2013 Paulo B. de Oliveira Filho <pauloborgesfilho@gmail.com> + * Copyright (c) 2013 Claudio Takahasi <claudio.takahasi@gmail.com> + * Copyright (c) 2013 João Paulo Rechi Vita <jprvita@gmail.com> + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#include <string.h> +#include <stdint.h> + +#include "log.h" +#include "ll.h" + +int main(void) +{ + ll_init(); + log_init(); + + DBG("Starting advertise using the Link Layer"); + ll_advertise_start(LL_ADV_NONCONN_UNDIR, NULL, 0); + + while (1); + + return 0; +} |