move files to work with platformio
This commit is contained in:
parent
ebcd0d1d0b
commit
5f0009c3b3
57 changed files with 7 additions and 0 deletions
0
.gitignore
vendored
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
Doxyfile
Normal file → Executable file
0
Doxyfile
Normal file → Executable file
0
FAQ
Normal file → Executable file
0
FAQ
Normal file → Executable file
0
README.md
Normal file → Executable file
0
README.md
Normal file → Executable file
0
doxygen-custom.css
Normal file → Executable file
0
doxygen-custom.css
Normal file → Executable file
0
examples/GettingStarted/GettingStarted.pde
Normal file → Executable file
0
examples/GettingStarted/GettingStarted.pde
Normal file → Executable file
0
examples/GettingStarted/Jamfile
Normal file → Executable file
0
examples/GettingStarted/Jamfile
Normal file → Executable file
0
examples/GettingStarted/printf.h
Normal file → Executable file
0
examples/GettingStarted/printf.h
Normal file → Executable file
0
examples/led_remote/Jamfile
Normal file → Executable file
0
examples/led_remote/Jamfile
Normal file → Executable file
0
examples/led_remote/led_remote.pde
Normal file → Executable file
0
examples/led_remote/led_remote.pde
Normal file → Executable file
0
examples/led_remote/printf.h
Normal file → Executable file
0
examples/led_remote/printf.h
Normal file → Executable file
0
examples/nordic_fob/Jamfile
Normal file → Executable file
0
examples/nordic_fob/Jamfile
Normal file → Executable file
0
examples/nordic_fob/nordic_fob.pde
Normal file → Executable file
0
examples/nordic_fob/nordic_fob.pde
Normal file → Executable file
0
examples/nordic_fob/printf.h
Normal file → Executable file
0
examples/nordic_fob/printf.h
Normal file → Executable file
0
examples/pingpair/Jamfile
Normal file → Executable file
0
examples/pingpair/Jamfile
Normal file → Executable file
0
examples/pingpair/pingpair.pde
Normal file → Executable file
0
examples/pingpair/pingpair.pde
Normal file → Executable file
0
examples/pingpair/printf.h
Normal file → Executable file
0
examples/pingpair/printf.h
Normal file → Executable file
0
examples/pingpair_dyn/Jamfile
Normal file → Executable file
0
examples/pingpair_dyn/Jamfile
Normal file → Executable file
0
examples/pingpair_dyn/pingpair_dyn.pde
Normal file → Executable file
0
examples/pingpair_dyn/pingpair_dyn.pde
Normal file → Executable file
0
examples/pingpair_dyn/printf.h
Normal file → Executable file
0
examples/pingpair_dyn/printf.h
Normal file → Executable file
0
examples/pingpair_irq/Jamfile
Normal file → Executable file
0
examples/pingpair_irq/Jamfile
Normal file → Executable file
0
examples/pingpair_irq/pingpair_irq.pde
Normal file → Executable file
0
examples/pingpair_irq/pingpair_irq.pde
Normal file → Executable file
0
examples/pingpair_irq/printf.h
Normal file → Executable file
0
examples/pingpair_irq/printf.h
Normal file → Executable file
0
examples/pingpair_maple/Jamfile
Normal file → Executable file
0
examples/pingpair_maple/Jamfile
Normal file → Executable file
0
examples/pingpair_maple/main.cpp
Normal file → Executable file
0
examples/pingpair_maple/main.cpp
Normal file → Executable file
0
examples/pingpair_maple/pingpair_maple.pde
Normal file → Executable file
0
examples/pingpair_maple/pingpair_maple.pde
Normal file → Executable file
0
examples/pingpair_pl/Jamfile
Normal file → Executable file
0
examples/pingpair_pl/Jamfile
Normal file → Executable file
0
examples/pingpair_pl/pingpair_pl.pde
Normal file → Executable file
0
examples/pingpair_pl/pingpair_pl.pde
Normal file → Executable file
0
examples/pingpair_pl/printf.h
Normal file → Executable file
0
examples/pingpair_pl/printf.h
Normal file → Executable file
0
examples/pingpair_sleepy/Jamfile
Normal file → Executable file
0
examples/pingpair_sleepy/Jamfile
Normal file → Executable file
0
examples/pingpair_sleepy/pingpair_sleepy.pde
Normal file → Executable file
0
examples/pingpair_sleepy/pingpair_sleepy.pde
Normal file → Executable file
0
examples/pingpair_sleepy/printf.h
Normal file → Executable file
0
examples/pingpair_sleepy/printf.h
Normal file → Executable file
0
examples/scanner/Jamfile
Normal file → Executable file
0
examples/scanner/Jamfile
Normal file → Executable file
0
examples/scanner/output/core.a
Normal file → Executable file
0
examples/scanner/output/core.a
Normal file → Executable file
0
examples/scanner/output/scanner.cpp
Normal file → Executable file
0
examples/scanner/output/scanner.cpp
Normal file → Executable file
0
examples/scanner/output/scanner.hex
Normal file → Executable file
0
examples/scanner/output/scanner.hex
Normal file → Executable file
0
examples/scanner/printf.h
Normal file → Executable file
0
examples/scanner/printf.h
Normal file → Executable file
0
examples/scanner/scanner.pde
Normal file → Executable file
0
examples/scanner/scanner.pde
Normal file → Executable file
0
examples/starping/Jamfile
Normal file → Executable file
0
examples/starping/Jamfile
Normal file → Executable file
0
examples/starping/printf.h
Normal file → Executable file
0
examples/starping/printf.h
Normal file → Executable file
0
examples/starping/starping.pde
Normal file → Executable file
0
examples/starping/starping.pde
Normal file → Executable file
0
keywords.txt
Normal file → Executable file
0
keywords.txt
Normal file → Executable file
0
RF24.cpp → src/RF24.cpp
Normal file → Executable file
0
RF24.cpp → src/RF24.cpp
Normal file → Executable file
0
RF24.h → src/RF24.h
Normal file → Executable file
0
RF24.h → src/RF24.h
Normal file → Executable file
7
RF24_config.h → src/RF24_config.h
Normal file → Executable file
7
RF24_config.h → src/RF24_config.h
Normal file → Executable file
|
@ -62,4 +62,11 @@ typedef uint16_t prog_uint16_t;
|
|||
#endif
|
||||
|
||||
#endif // __RF24_CONFIG_H__
|
||||
|
||||
//ARM specific code
|
||||
#ifdef __arm__
|
||||
#define SPI_CLOCK_DIV4 21
|
||||
#define _BV(bit) (1 << (bit))
|
||||
#define printf_P printf
|
||||
#endif
|
||||
// vim:ai:cin:sts=2 sw=2 ft=cpp
|
0
nRF24L01.h → src/nRF24L01.h
Normal file → Executable file
0
nRF24L01.h → src/nRF24L01.h
Normal file → Executable file
0
tests/README
Normal file → Executable file
0
tests/README
Normal file → Executable file
0
tests/native/Jamfile
Normal file → Executable file
0
tests/native/Jamfile
Normal file → Executable file
0
tests/native/pingpair_irq.pde
Normal file → Executable file
0
tests/native/pingpair_irq.pde
Normal file → Executable file
0
tests/native/printf.h
Normal file → Executable file
0
tests/native/printf.h
Normal file → Executable file
0
tests/pingpair_blocking/Jamfile
Normal file → Executable file
0
tests/pingpair_blocking/Jamfile
Normal file → Executable file
0
tests/pingpair_blocking/pingpair_blocking.pde
Normal file → Executable file
0
tests/pingpair_blocking/pingpair_blocking.pde
Normal file → Executable file
0
tests/pingpair_blocking/printf.h
Normal file → Executable file
0
tests/pingpair_blocking/printf.h
Normal file → Executable file
0
tests/pingpair_test/Jamfile
Normal file → Executable file
0
tests/pingpair_test/Jamfile
Normal file → Executable file
0
tests/pingpair_test/pingpair_test.pde
Normal file → Executable file
0
tests/pingpair_test/pingpair_test.pde
Normal file → Executable file
0
tests/pingpair_test/printf.h
Normal file → Executable file
0
tests/pingpair_test/printf.h
Normal file → Executable file
0
wikidoc.xslt
Normal file → Executable file
0
wikidoc.xslt
Normal file → Executable file
Loading…
Reference in a new issue