1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
//! Sx128x Radio Driver
// Copyright 2018 Ryan Kurte

#![no_std]
#![feature(associated_type_defaults)]

use core::convert::TryFrom;
use core::fmt::Debug;

extern crate libc;

#[cfg(any(test, feature = "util"))]
#[macro_use]
extern crate std;

use base::Base;

#[cfg(not(feature = "defmt"))]
use log::{debug, error, trace, warn};

#[cfg(feature = "defmt")]
use defmt::{debug, error, trace, warn};

use embedded_hal::{
    delay::DelayNs,
    digital::{InputPin, OutputPin},
    spi::{ErrorType, Mode as SpiMode, Phase, Polarity, SpiDevice},
};

pub use radio::{Channel as _, Interrupts as _, State as _};

pub mod base;

pub mod device;
use device::*;
pub use device::{Config, State};

pub mod prelude;

/// Sx128x Spi operating mode
pub const SPI_MODE: SpiMode = SpiMode {
    polarity: Polarity::IdleLow,
    phase: Phase::CaptureOnFirstTransition,
};

/// Sx128x device object
pub struct Sx128x<Base> {
    config: Config,
    packet_type: PacketType,
    hal: Base,
}

pub const FREQ_MIN: u32 = 2_400_000_000;
pub const FREQ_MAX: u32 = 2_500_000_000;

pub const NUM_RETRIES: usize = 3;

/// Sx128x error type
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "thiserror", derive(thiserror::Error))]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum Error<CommsError: Debug + 'static, PinError: Debug + 'static> {
    #[cfg_attr(feature = "thiserror", error("communication error: {:?}", 0))]
    /// Communications (SPI or UART) error
    Comms(CommsError),

    #[cfg_attr(feature = "thiserror", error("pin error: {:?}", 0))]
    /// Pin control error
    Pin(PinError),

    #[cfg_attr(feature = "thiserror", error("transaction aborted"))]
    /// Transaction aborted
    Aborted,

    #[cfg_attr(feature = "thiserror", error("transaction timeout"))]
    /// Timeout by device
    Timeout,

    #[cfg_attr(feature = "thiserror", error("busy timeout"))]
    /// Timeout awaiting busy pin de-assert
    BusyTimeout,

    #[cfg_attr(feature = "thiserror", error("invalid message CRC"))]
    /// CRC error on received message
    InvalidCrc,

    #[cfg_attr(feature = "thiserror", error("invalid message length"))]
    /// Invalid message length
    InvalidLength,

    #[cfg_attr(feature = "thiserror", error("invalid sync word"))]
    /// TODO
    InvalidSync,

    #[cfg_attr(feature = "thiserror", error("transaction aborted"))]
    /// TODO
    Abort,

    #[cfg_attr(
        feature = "thiserror",
        error("invalid state (expected {:?} actual {:?})", 0, 1)
    )]
    /// TODO
    InvalidState(State, State),

    #[cfg_attr(
        feature = "thiserror",
        error("invalid device version (received {:?})", 0)
    )]
    /// Radio returned an invalid device firmware version
    InvalidDevice(u16),

    #[cfg_attr(
        feature = "thiserror",
        error("invalid circuit state (received {:?})", 0)
    )]
    /// Radio returned an invalid response
    InvalidCircuitState(u8),

    #[cfg_attr(
        feature = "thiserror",
        error("invalid command state (received {:?})", 0)
    )]
    /// Radio returned an invalid response
    InvalidCommandStatus(u8),

    #[cfg_attr(feature = "thiserror", error("invalid configuration"))]
    /// Invalid configuration option provided
    InvalidConfiguration,

    #[cfg_attr(feature = "thiserror", error("invalid state command"))]
    /// Invalid state command
    InvalidStateCommand,

    #[cfg_attr(
        feature = "thiserror",
        error("invalid frequency or frequency out of range")
    )]
    /// Frequency out of range
    InvalidFrequency,

    #[cfg_attr(feature = "thiserror", error("device communication failed"))]
    /// No SPI communication detected
    NoComms,
}

pub type Sx128xSpi<Spi, BusyPin, ReadyPin, SdnPin, DelayPin> =
    Sx128x<Base<Spi, BusyPin, ReadyPin, SdnPin, DelayPin>>;

impl<Spi, BusyPin, ReadyPin, SdnPin, PinError, Delay>
    Sx128x<Base<Spi, BusyPin, ReadyPin, SdnPin, Delay>>
where
    Spi: SpiDevice,
    <Spi as ErrorType>::Error: Debug,

    BusyPin: InputPin<Error = PinError>,
    ReadyPin: InputPin<Error = PinError>,
    SdnPin: OutputPin<Error = PinError>,
    PinError: Debug,

    Delay: DelayNs,
{
    /// Create an Sx128x with the provided `Spi` implementation and pins
    pub fn spi(
        spi: Spi,
        busy: BusyPin,
        ready: ReadyPin,
        sdn: SdnPin,
        delay: Delay,
        config: &Config,
    ) -> Result<Self, Error<<Spi as ErrorType>::Error, PinError>> {
        // Create SpiWrapper over spi/cs/busy
        let hal = Base {
            spi,
            sdn,
            busy,
            ready,
            delay,
        };
        // Create instance with new hal
        Self::new(hal, config)
    }
}

impl<Hal> Sx128x<Hal>
where
    Hal: base::Hal,
    <Hal as base::Hal>::CommsError: Debug + 'static,
    <Hal as base::Hal>::PinError: Debug + 'static,
{
    /// Create a new Sx128x instance over a generic Hal implementation
    pub fn new(
        hal: Hal,
        config: &Config,
    ) -> Result<Self, Error<<Hal as base::Hal>::CommsError, <Hal as base::Hal>::PinError>> {
        let mut sx128x = Self::build(hal);

        debug!("Resetting device");

        // Reset IC
        sx128x.hal.reset()?;

        debug!("Checking firmware version");

        // Check communication with the radio
        let firmware_version = sx128x.firmware_version()?;

        if firmware_version == 0xFFFF || firmware_version == 0x0000 {
            return Err(Error::NoComms);
        } else if firmware_version != 0xA9B5 {
            warn!(
                "Invalid firmware version! expected: 0x{:x} actual: 0x{:x}",
                0xA9B5, firmware_version
            );
        }

        if firmware_version != 0xA9B5 && !config.skip_version_check {
            // Disable version check. Known F/W version is: 0x8E8E
            // return Err(Error::InvalidDevice(firmware_version));
        }

        // TODO: do we need to calibrate things here?
        //sx128x.calibrate(CalibrationParams::default())?;

        debug!("Configuring device");

        // Configure device prior to use
        sx128x.configure(config)?;

        // Ensure state is idle
        sx128x.set_state(State::StandbyRc)?;

        Ok(sx128x)
    }

    pub fn reset(&mut self) -> Result<(), <Hal as base::HalError>::E> {
        debug!("Resetting device");

        self.hal.reset()?;

        Ok(())
    }

    pub(crate) fn build(hal: Hal) -> Self {
        Sx128x {
            config: Config::default(),
            packet_type: PacketType::None,
            hal,
        }
    }

    pub fn configure(&mut self, config: &Config) -> Result<(), <Hal as base::HalError>::E> {
        // Switch to standby mode
        self.set_state(State::StandbyRc)?;

        // Check configs match
        match (&config.modem, &config.channel) {
            (Modem::LoRa(_), Channel::LoRa(_)) => (),
            (Modem::Flrc(_), Channel::Flrc(_)) => (),
            (Modem::Gfsk(_), Channel::Gfsk(_)) => (),
            _ => return Err(Error::InvalidConfiguration),
        }

        // Update regulator mode
        self.set_regulator_mode(config.regulator_mode)?;
        self.config.regulator_mode = config.regulator_mode;

        // Update modem and channel configuration
        self.set_channel(&config.channel)?;
        self.config.channel = config.channel.clone();

        self.configure_modem(&config.modem)?;
        self.config.modem = config.modem.clone();

        // Update power amplifier configuration
        self.set_power_ramp(config.pa_config.power, config.pa_config.ramp_time)?;
        self.config.pa_config = config.pa_config.clone();

        Ok(())
    }

    pub fn firmware_version(&mut self) -> Result<u16, <Hal as base::HalError>::E> {
        let mut d = [0u8; 2];

        self.hal
            .read_regs(Registers::LrFirmwareVersionMsb as u16, &mut d)?;

        Ok((d[0] as u16) << 8 | (d[1] as u16))
    }

    pub fn set_frequency(&mut self, f: u32) -> Result<(), <Hal as base::HalError>::E> {
        let c = self.config.freq_to_steps(f as f32) as u32;

        trace!("Setting frequency ({:?} MHz, {} index)", f / 1000 / 1000, c);

        let data: [u8; 3] = [(c >> 16) as u8, (c >> 8) as u8, c as u8];

        self.hal.write_cmd(Commands::SetRfFrequency as u8, &data)
    }

    pub(crate) fn set_power_ramp(
        &mut self,
        power: i8,
        ramp: RampTime,
    ) -> Result<(), <Hal as base::HalError>::E> {
        if !(-18..=13).contains(&power) {
            warn!("TX power out of range (-18 < p < 13)");
        }

        // Limit to -18 to +13 dBm
        let power = core::cmp::max(power, -18);
        let power = core::cmp::min(power, 13);
        let power_reg = (power + 18) as u8;

        trace!(
            "Setting TX power to {} dBm {:?} ramp ({}, {})",
            power,
            ramp,
            power_reg,
            ramp as u8
        );
        self.config.pa_config.power = power;
        self.config.pa_config.ramp_time = ramp;

        self.hal
            .write_cmd(Commands::SetTxParams as u8, &[power_reg, ramp as u8])
    }

    /// Set IRQ mask
    pub fn set_irq_mask(&mut self, irq: Irq) -> Result<(), <Hal as base::HalError>::E> {
        trace!("Setting IRQ mask: {:?}", irq);

        let raw = irq.bits();
        self.hal.write_cmd(
            Commands::SetDioIrqParams as u8,
            &[(raw >> 8) as u8, (raw & 0xff) as u8],
        )
    }

    /// Set the IRQ and DIO masks
    pub fn set_irq_dio_mask(
        &mut self,
        irq: Irq,
        dio1: DioMask,
        dio2: DioMask,
        dio3: DioMask,
    ) -> Result<(), <Hal as base::HalError>::E> {
        trace!(
            "Setting IRQ mask: {:?} DIOs: {:?}, {:?}, {:?}",
            irq,
            dio1,
            dio2,
            dio3
        );

        let raw_irq = irq.bits();
        let raw_dio1 = dio1.bits();
        let raw_dio2 = dio2.bits();
        let raw_dio3 = dio3.bits();

        let data = [
            (raw_irq >> 8) as u8,
            (raw_irq & 0xff) as u8,
            (raw_dio1 >> 8) as u8,
            (raw_dio1 & 0xff) as u8,
            (raw_dio2 >> 8) as u8,
            (raw_dio2 & 0xff) as u8,
            (raw_dio3 >> 8) as u8,
            (raw_dio3 & 0xff) as u8,
        ];

        self.hal.write_cmd(Commands::SetDioIrqParams as u8, &data)
    }

    pub(crate) fn configure_modem(
        &mut self,
        config: &Modem,
    ) -> Result<(), <Hal as base::HalError>::E> {
        use Modem::*;

        debug!("Setting modem config: {:?}", config);

        // First update packet type (if required)
        let packet_type = PacketType::from(config);
        if self.packet_type != packet_type {
            trace!("Setting packet type: {:?}", packet_type);
            self.hal
                .write_cmd(Commands::SetPacketType as u8, &[packet_type as u8])?;
            self.packet_type = packet_type;
        }

        let data = match config {
            Gfsk(c) => [
                c.preamble_length as u8,
                c.sync_word_length as u8,
                c.sync_word_match as u8,
                c.header_type as u8,
                c.payload_length,
                c.crc_mode as u8,
                c.whitening as u8,
            ],
            LoRa(c) | Ranging(c) => [
                c.preamble_length,
                c.header_type as u8,
                c.payload_length,
                c.crc_mode as u8,
                c.invert_iq as u8,
                0u8,
                0u8,
            ],
            Flrc(c) => [
                c.preamble_length as u8,
                c.sync_word_length as u8,
                c.sync_word_match as u8,
                c.header_type as u8,
                c.payload_length,
                c.crc_mode as u8,
                c.whitening as u8,
            ],
            Ble(c) => [
                c.connection_state as u8,
                c.crc_field as u8,
                c.packet_type as u8,
                c.whitening as u8,
                0u8,
                0u8,
                0u8,
            ],
            None => [0u8; 7],
        };

        self.hal.write_cmd(Commands::SetPacketParams as u8, &data)?;

        // Apply patches
        match config {
            Flrc(c) if c.patch_syncword => {
                // Apply sync-word patch for FLRC mode
                self.patch_flrc_syncword()?;
            }
            Gfsk(c) if c.patch_preamble => {
                // Write preamble length for GFSK mode
                self.hal.write_reg(
                    Registers::GfskBlePreambleLength as u16,
                    c.preamble_length as u8,
                )?;
            }
            _ => (),
        }

        Ok(())
    }

    pub(crate) fn get_rx_buffer_status(&mut self) -> Result<(u8, u8), <Hal as base::HalError>::E> {
        use device::lora::LoRaHeader;

        let mut status = [0u8; 2];

        self.hal
            .read_cmd(Commands::GetRxBufferStatus as u8, &mut status)?;

        let len = match &self.config.modem {
            Modem::LoRa(c) => match c.header_type {
                LoRaHeader::Implicit => self.hal.read_reg(Registers::LrPayloadLength as u16)?,
                LoRaHeader::Explicit => status[0],
            },
            // BLE status[0] does not include 2-byte PDU header
            Modem::Ble(_) => status[0] + 2,
            _ => status[0],
        };

        let rx_buff_ptr = status[1];

        trace!("RX buffer ptr: {} len: {}", rx_buff_ptr, len);

        Ok((rx_buff_ptr, len))
    }

    pub(crate) fn get_packet_info(
        &mut self,
        info: &mut PacketInfo,
    ) -> Result<(), <Hal as base::HalError>::E> {
        let mut data = [0u8; 5];
        self.hal
            .read_cmd(Commands::GetPacketStatus as u8, &mut data)?;

        info.packet_status = PacketStatus::from_bits_truncate(data[2]);
        info.tx_rx_status = TxRxStatus::from_bits_truncate(data[3]);
        info.sync_addr_status = data[4] & 0b0111;

        match self.packet_type {
            PacketType::Gfsk | PacketType::Flrc | PacketType::Ble => {
                info.rssi = -(data[1] as i16) / 2;
                let rssi_avg = -(data[0] as i16) / 2;
                trace!("Raw RSSI: {}", info.rssi);
                trace!("Average RSSI: {}", rssi_avg);
            }
            PacketType::LoRa | PacketType::Ranging => {
                info.rssi = -(data[0] as i16) / 2;
                info.snr = Some(match data[1] < 128 {
                    true => data[1] as i16 / 4,
                    false => (data[1] as i16 - 256) / 4,
                });
            }
            PacketType::None => unimplemented!(),
        }

        debug!("Info: {:?}", info);

        Ok(())
    }

    pub fn calibrate(&mut self, c: CalibrationParams) -> Result<(), <Hal as base::HalError>::E> {
        trace!("Calibrate {:?}", c);
        self.hal.write_cmd(Commands::Calibrate as u8, &[c.bits()])
    }

    pub(crate) fn set_regulator_mode(
        &mut self,
        r: RegulatorMode,
    ) -> Result<(), <Hal as base::HalError>::E> {
        trace!("Set regulator mode {:?}", r);
        self.hal
            .write_cmd(Commands::SetRegulatorMode as u8, &[r as u8])
    }

    // TODO: this could got into a mode config object maybe?
    #[allow(dead_code)]
    pub(crate) fn set_auto_tx(&mut self, a: AutoTx) -> Result<(), <Hal as base::HalError>::E> {
        let data = match a {
            AutoTx::Enabled(timeout_us) => {
                let compensated = timeout_us - AUTO_RX_TX_OFFSET;
                [(compensated >> 8) as u8, (compensated & 0xff) as u8]
            }
            AutoTx::Disabled => [0u8; 2],
        };
        self.hal.write_cmd(Commands::SetAutoTx as u8, &data)
    }

    pub(crate) fn set_buff_base_addr(
        &mut self,
        tx: u8,
        rx: u8,
    ) -> Result<(), <Hal as base::HalError>::E> {
        trace!("Set buff base address (tx: {}, rx: {})", tx, rx);
        self.hal
            .write_cmd(Commands::SetBufferBaseAddress as u8, &[tx, rx])
    }

    /// Set the sychronization mode for a given index (1-3).
    /// This is 5-bytes for GFSK mode and 4-bytes for FLRC and BLE modes.
    pub fn set_syncword(
        &mut self,
        index: u8,
        value: &[u8],
    ) -> Result<(), <Hal as base::HalError>::E> {
        trace!(
            "Attempting to set sync word index: {} to: {:?}",
            index,
            value
        );

        // Check sync words for errata 16.4
        if self.packet_type == PacketType::Flrc {
            match &value[0..2] {
                &[0x8C, 0x32] | &[0x63, 0x0E] => {
                    error!("Invalid sync word selected (see errata 16.4)");
                    return Err(Error::InvalidConfiguration);
                }
                _ => (),
            }
        }

        // Calculate sync word base address and expected length
        let (addr, len) = match (&self.packet_type, index) {
            (PacketType::Gfsk, 1) => (Registers::LrSyncWordBaseAddress1 as u16, 5),
            (PacketType::Gfsk, 2) => (Registers::LrSyncWordBaseAddress2 as u16, 5),
            (PacketType::Gfsk, 3) => (Registers::LrSyncWordBaseAddress3 as u16, 5),
            (PacketType::Flrc, 1) => (Registers::LrSyncWordBaseAddress1 as u16 + 1, 4),
            (PacketType::Flrc, 2) => (Registers::LrSyncWordBaseAddress2 as u16 + 1, 4),
            (PacketType::Flrc, 3) => (Registers::LrSyncWordBaseAddress3 as u16 + 1, 4),
            (PacketType::Ble, _) => (Registers::LrSyncWordBaseAddress1 as u16 + 1, 4),
            _ => {
                warn!(
                    "Invalid sync word configuration (mode: {:?} index: {} value: {:?}",
                    self.config.modem, index, value
                );
                return Err(Error::InvalidConfiguration);
            }
        };

        // Check length is correct
        if value.len() != len {
            warn!(
                "Incorrect sync word length for mode: {:?} (actual: {}, expected: {})",
                self.config.modem,
                value.len(),
                len
            );
            return Err(Error::InvalidConfiguration);
        }

        // Write sync word
        self.hal.write_regs(addr, value)?;

        Ok(())
    }

    /// Apply patch for sync-word match errata in FLRC mode
    fn patch_flrc_syncword(&mut self) -> Result<(), <Hal as base::HalError>::E> {
        // If we're in FLRC mode, patch to force 100% match on syncwords
        // because otherwise the 4 bit threshold is too low
        if let PacketType::Flrc = &self.packet_type {
            let r = self.hal.read_reg(Registers::LrSyncWordTolerance as u16)?;
            self.hal
                .write_reg(Registers::LrSyncWordTolerance as u16, r & 0xF0)?;
        }

        Ok(())
    }
}

impl<Hal> DelayNs for Sx128x<Hal>
where
    Hal: base::Hal,
{
    fn delay_ns(&mut self, t: u32) {
        self.hal.delay_ns(t);
    }
}

/// `radio::State` implementation for the SX128x
impl<Hal> radio::State for Sx128x<Hal>
where
    Hal: base::Hal,
{
    type State = State;
    type Error = <Hal as base::HalError>::E;

    /// Fetch device state
    fn get_state(&mut self) -> Result<Self::State, Self::Error> {
        let mut d = [0u8; 1];
        self.hal.read_cmd(Commands::GetStatus as u8, &mut d)?;

        trace!("raw state: {}", d[0]);

        let mode = (d[0] & 0b1110_0000) >> 5;
        let m = State::try_from(mode).map_err(|_| Error::InvalidCircuitState(d[0]))?;

        let status = (d[0] & 0b0001_1100) >> 2;
        let s = CommandStatus::try_from(status).map_err(|_| Error::InvalidCommandStatus(d[0]))?;

        trace!("get state: {:?} status: {:?}", m, s);

        Ok(m)
    }

    /// Set device state
    fn set_state(&mut self, state: Self::State) -> Result<(), Self::Error> {
        let command = match state {
            State::Tx => Commands::SetTx,
            State::Rx => Commands::SetRx,
            //State::Cad => Commands::SetCad,
            State::Fs => Commands::SetFs,
            State::StandbyRc | State::StandbyXosc => Commands::SetStandby,
            State::Sleep => Commands::SetSleep,
            #[cfg(feature = "patch-unknown-state")]
            State::Unknown => return Err(Error::InvalidStateCommand),
        };

        trace!("Setting state {:?} ({})", state, command);

        self.hal.write_cmd(command as u8, &[0u8])
    }
}

/// `radio::Busy` implementation for the SX128x
impl<Hal> radio::Busy for Sx128x<Hal>
where
    Hal: base::Hal,
{
    type Error = <Hal as base::HalError>::E;

    /// Fetch device state
    fn is_busy(&mut self) -> Result<bool, Self::Error> {
        let irq = self.get_interrupts(false)?;

        if irq.contains(Irq::SYNCWORD_VALID)
            && !(irq.contains(Irq::RX_DONE) || irq.contains(Irq::CRC_ERROR))
        {
            return Ok(true);
        }

        Ok(false)
    }
}

/// `radio::Channel` implementation for the SX128x
impl<Hal> radio::Channel for Sx128x<Hal>
where
    Hal: base::Hal,
{
    /// Channel consists of an operating frequency and packet mode
    type Channel = Channel;

    type Error = <Hal as base::HalError>::E;

    /// Set operating channel
    fn set_channel(&mut self, ch: &Self::Channel) -> Result<(), Self::Error> {
        use Channel::*;

        debug!("Setting channel config: {:?}", ch);

        // Set frequency
        let freq = ch.frequency();
        if !(FREQ_MIN..=FREQ_MAX).contains(&freq) {
            return Err(Error::InvalidFrequency);
        }

        self.set_frequency(freq)?;

        // First update packet type (if required)
        let packet_type = PacketType::from(ch);
        if self.packet_type != packet_type {
            self.hal
                .write_cmd(Commands::SetPacketType as u8, &[packet_type as u8])?;
            self.packet_type = packet_type;
        }

        // Then write modulation configuration
        let data = match ch {
            Gfsk(c) => [c.br_bw as u8, c.mi as u8, c.ms as u8],
            LoRa(c) | Ranging(c) => [c.sf as u8, c.bw as u8, c.cr as u8],
            Flrc(c) => [c.br_bw as u8, c.cr as u8, c.ms as u8],
            Ble(c) => [c.br_bw as u8, c.mi as u8, c.ms as u8],
        };

        self.hal
            .write_cmd(Commands::SetModulationParams as u8, &data)
    }
}

/// `radio::Power` implementation for the SX128x
impl<Hal> radio::Power for Sx128x<Hal>
where
    Hal: base::Hal,
{
    type Error = <Hal as base::HalError>::E;

    /// Set TX power in dBm
    fn set_power(&mut self, power: i8) -> Result<(), <Hal as base::HalError>::E> {
        let ramp_time = self.config.pa_config.ramp_time;
        self.set_power_ramp(power, ramp_time)
    }
}

/// `radio::Interrupts` implementation for the SX128x
impl<Hal> radio::Interrupts for Sx128x<Hal>
where
    Hal: base::Hal,
{
    type Irq = Irq;
    type Error = <Hal as base::HalError>::E;

    /// Fetch (and optionally clear) current interrupts
    fn get_interrupts(&mut self, clear: bool) -> Result<Self::Irq, Self::Error> {
        let mut data = [0u8; 2];

        self.hal.read_cmd(Commands::GetIrqStatus as u8, &mut data)?;
        let irq = Irq::from_bits((data[0] as u16) << 8 | data[1] as u16).unwrap();

        if clear && !irq.is_empty() {
            self.hal.write_cmd(Commands::ClearIrqStatus as u8, &data)?;
        }

        if !irq.is_empty() {
            trace!("irq: {:?}", irq);
        }

        Ok(irq)
    }
}

/// `radio::Transmit` implementation for the SX128x
impl<Hal> radio::Transmit for Sx128x<Hal>
where
    Hal: base::Hal,
{
    type Error = <Hal as base::HalError>::E;

    /// Start transmitting a packet
    fn start_transmit(&mut self, data: &[u8]) -> Result<(), Self::Error> {
        debug!("TX start");

        // Set state to idle before we write configuration
        self.set_state(State::StandbyRc)?;

        let s = self.get_state()?;
        debug!("TX setup state: {:?}", s);

        // Set packet mode
        let mut modem_config = self.config.modem.clone();
        modem_config.set_payload_len(data.len() as u8);

        if let Err(e) = self.configure_modem(&modem_config) {
            if let Ok(s) = self.get_state() {
                error!("TX error setting modem (state: {:?})", s);
            } else {
                error!("TX error setting modem",);
            }
            return Err(e);
        }

        // Reset buffer addr
        if let Err(e) = self.set_buff_base_addr(0, 0) {
            if let Ok(s) = self.get_state() {
                error!("TX error setting buffer base addr (state: {:?})", s);
            } else {
                error!("TX error setting buffer base addr",);
            }

            return Err(e);
        }

        // Write data to be sent
        debug!("TX data: {:?}", data);
        self.hal.write_buff(0, data)?;

        // Configure ranging if used
        if PacketType::Ranging == self.packet_type {
            self.hal.write_cmd(
                Commands::SetRangingRole as u8,
                &[RangingRole::Initiator as u8],
            )?;
        }

        // Setup timout
        let config = [
            self.config.rf_timeout.step() as u8,
            ((self.config.rf_timeout.count() >> 8) & 0x00FF) as u8,
            (self.config.rf_timeout.count() & 0x00FF) as u8,
        ];

        // Enable IRQs
        let irqs = Irq::TX_DONE | Irq::CRC_ERROR | Irq::RX_TX_TIMEOUT;
        self.set_irq_dio_mask(irqs, irqs, DioMask::empty(), DioMask::empty())?;

        // Enter transmit mode
        self.hal.write_cmd(Commands::SetTx as u8, &config)?;

        trace!("TX start issued");

        let state = self.get_state()?;
        trace!("State: {:?}", state);

        Ok(())
    }

    /// Check for transmit completion
    fn check_transmit(&mut self) -> Result<bool, Self::Error> {
        // Poll on DIO and short-circuit if not asserted
        #[cfg(feature = "poll_irq")]
        if self.hal.get_dio()? == PinState::Low {
            return Ok(false);
        }

        let irq = self.get_interrupts(true)?;
        let state = self.get_state()?;

        trace!("TX poll (irq: {:?}, state: {:?})", irq, state);

        if irq.contains(Irq::TX_DONE) {
            debug!("TX complete");
            Ok(true)
        } else if irq.contains(Irq::RX_TX_TIMEOUT) {
            debug!("TX timeout");
            Err(Error::Timeout)
        } else {
            Ok(false)
        }
    }
}

/// `radio::Receive` implementation for the SX128x
impl<Hal> radio::Receive for Sx128x<Hal>
where
    Hal: base::Hal,
{
    /// Receive info structure
    type Info = PacketInfo;

    /// RF Error object
    type Error = <Hal as base::HalError>::E;

    /// Start radio in receive mode
    fn start_receive(&mut self) -> Result<(), Self::Error> {
        debug!("RX start");

        // Set state to idle before we write configuration
        self.set_state(State::StandbyRc)?;

        let s = self.get_state()?;
        debug!("RX setup state: {:?}", s);

        // Reset buffer addr
        if let Err(e) = self.set_buff_base_addr(0, 0) {
            if let Ok(s) = self.get_state() {
                error!("RX error setting buffer base addr (state: {:?})", s);
            } else {
                error!("RX error setting buffer base addr",);
            }
            return Err(e);
        }

        // Set packet mode
        // TODO: surely this should not bre required _every_ receive?
        let modem_config = self.config.modem.clone();

        if let Err(e) = self.configure_modem(&modem_config) {
            if let Ok(s) = self.get_state() {
                error!("RX error setting configuration (state: {:?})", s);
            } else {
                error!("RX error setting configuration",);
            }
            return Err(e);
        }

        // Configure ranging if used
        if PacketType::Ranging == self.packet_type {
            self.hal.write_cmd(
                Commands::SetRangingRole as u8,
                &[RangingRole::Responder as u8],
            )?;
        }

        // Setup timout
        let config = [
            self.config.rf_timeout.step() as u8,
            ((self.config.rf_timeout.count() >> 8) & 0x00FF) as u8,
            (self.config.rf_timeout.count() & 0x00FF) as u8,
        ];

        // Enable IRQs
        let irqs = Irq::RX_DONE
            | Irq::CRC_ERROR
            | Irq::RX_TX_TIMEOUT
            | Irq::SYNCWORD_VALID
            | Irq::SYNCWORD_ERROR
            | Irq::HEADER_VALID
            | Irq::HEADER_ERROR
            | Irq::PREAMBLE_DETECTED;

        self.set_irq_dio_mask(irqs, irqs, DioMask::empty(), DioMask::empty())?;

        // Enter transmit mode
        self.hal.write_cmd(Commands::SetRx as u8, &config)?;

        let state = self.get_state()?;

        debug!("RX started (state: {:?})", state);

        Ok(())
    }

    /// Check for a received packet
    fn check_receive(&mut self, restart: bool) -> Result<bool, Self::Error> {
        // Poll on DIO and short-circuit if not asserted
        #[cfg(feature = "poll_irq")]
        if self.hal.get_dio()? == PinState::Low {
            return Ok(false);
        }

        let irq = self.get_interrupts(true)?;
        let mut res = Ok(false);

        trace!("RX poll (irq: {:?})", irq);

        // Process flags
        if irq.contains(Irq::CRC_ERROR) {
            debug!("RX CRC error");
            res = Err(Error::InvalidCrc);
        } else if irq.contains(Irq::RX_TX_TIMEOUT) {
            debug!("RX timeout");
            res = Err(Error::Timeout);
        } else if irq.contains(Irq::SYNCWORD_ERROR) {
            debug!("Invalid syncword");
            res = Err(Error::InvalidSync);
        } else if irq.contains(Irq::RX_DONE) {
            debug!("RX complete");
            res = Ok(true);
        }

        // Auto-restart on failure if enabled
        match (restart, res) {
            (true, Err(_)) => {
                debug!("RX restarting");
                self.start_receive()?;
                Ok(false)
            }
            (_, r) => r,
        }
    }

    /// Fetch a received packet
    fn get_received(&mut self, data: &mut [u8]) -> Result<(usize, Self::Info), Self::Error> {
        // Fetch RX buffer information
        let (ptr, len) = self.get_rx_buffer_status()?;

        debug!("RX get received, ptr: {} len: {}", ptr, len);

        if data.len() < len as usize {
            return Err(Error::InvalidLength);
        }

        // TODO: check error packet status byte to ensure CRC is valid
        // as this may not result in a CRC error IRQ.
        // See chip errata for further details

        // Read from the buffer at the provided pointer
        self.hal.read_buff(ptr, &mut data[..len as usize])?;

        // Fetch related information
        let mut info = Self::Info::default();
        self.get_packet_info(&mut info)?;

        trace!("RX data: {:?} info: {:?}", &data[..len as usize], info);

        // Return read length
        Ok((len as usize, info))
    }
}

/// `radio::Rssi` implementation for the SX128x
impl<Hal> radio::Rssi for Sx128x<Hal>
where
    Hal: base::Hal,
{
    type Error = <Hal as base::HalError>::E;

    /// Poll for the current channel RSSI
    /// This should only be called when in receive mode
    fn poll_rssi(&mut self) -> Result<i16, <Hal as base::HalError>::E> {
        let mut raw = [0u8; 1];
        self.hal.read_cmd(Commands::GetRssiInst as u8, &mut raw)?;
        Ok(-(raw[0] as i16) / 2)
    }
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}