Commit eafcc35a authored by Daniel Friesel's avatar Daniel Friesel
Browse files

nrf24l01test: more tests

parent 23df73ee
Loading
Loading
Loading
Loading
+42 −21
Original line number Diff line number Diff line
@@ -8,49 +8,69 @@
	counter.start();                \
	functioncall;                   \
	counter.stop();                 \
	kout << endl << index << " :: " << dec << counter.value << "/" << counter.overflow << endl;
	kout << endl                    \
		 << index << " :: " << dec << counter.value << "/" << counter.overflow << endl;

char buf[32];

void loop(void)
{
	gpio.led_toggle(1);
	static uint8_t do_send = 0;
	uint8_t status = nrf24l01.getStatus();

	kout << "status: " << hex << status;
	if (status & 0x40) {
	if (status & 0x40)
	{
		kout << " RX_DR";
	}
	if (status & 0x20) {
	if (status & 0x20)
	{
		kout << " TX_DS";
	}
	if (status & 0x10) {
	if (status & 0x10)
	{
		kout << " MAX_RT";
	}
	if ((status & 0x0e) == 0x0e) {
	if ((status & 0x0e) == 0x0e)
	{
		kout << " RX_EMPTY";
	}
	if (status & 0x01) {
	if (status & 0x01)
	{
		kout << " TX_FULL";
	}
	if ((status & 0x0e) < 0x0d) {
	if ((status & 0x0e) < 0x0d)
	{
		kout << " @" << (status & 0x0e) / 2;
	}
	kout << endl;

#ifdef MULTIPASS_ARCH_msp430fr5969lp
	kout << "write: ";
#ifdef MULTIPASS_ARCH_msp430fr5994lp
	//kout << nrf24l01.write("foo", 3, true, true) << " ";
	//kout << nrf24l01.write("123456789", 10, true, true) << " ";
	kout << nrf24l01.write("123456789123456789", 20, true, true) << endl;
	if (do_send++ % 2)
	{
		// TODO .write(...) ist wenn der Empfänger verschwindet trotzdem noch ein paar mal erfolgreich. Das sieht komisch aus.
		nrf24l01.flushTx();
		TIMEIT(0, arch.delay_ms(10));
		TIMEIT(1, status = nrf24l01.write("123456789123456789", 20, true, true));
		kout << "write: " << status << endl;
		kout << "Observe TX = " << hex << nrf24l01.getObserveTx() << endl;
	}
#else
	kout << "carrier " << nrf24l01.testCarrier() << " / RPD " << nrf24l01.testRPD();
	if (nrf24l01.available()) {
	if (nrf24l01.available())
	{
		nrf24l01.read(buf, 32);
		buf[31] = 0;
		kout << " / data = " << buf << endl;
	} else {
	}
	else
	{
		kout << " / no data" << endl;
	}
	// flush carrier / rpd status
	nrf24l01.stopListening();
	nrf24l01.startListening();
#endif
@@ -70,11 +90,12 @@ int main(void)
	unsigned char addr[5] = {0, 'D', 'E', 'R', 'F'};
	nrf24l01.setAutoAck(1);
	//nrf24l01.enableAckPayload();
	nrf24l01.setDynamicPayloads(false);
	nrf24l01.setPALevel(Nrf24l01::RF24_PA_MAX);
	nrf24l01.setDynamicPayloads(true);
	nrf24l01.setPALevel(Nrf24l01::RF24_PA_HIGH);
	nrf24l01.setChannel(110);
	nrf24l01.setDataRate(Nrf24l01::RF24_2MBPS);
#ifdef MULTIPASS_ARCH_msp430fr5994lp
	nrf24l01.setRetries(15, 15);
#ifdef MULTIPASS_ARCH_msp430fr5969lp
	nrf24l01.openReadingPipe(1, addr);
	nrf24l01.startListening();
#else