monarch2 0.1.0-beta.1

A driver crate for the Sequans Monarch 2 Platform chips.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use atat::atat_derive::AtatEnum;

/// Public key type.
#[derive(Clone, Debug, PartialEq, AtatEnum)]
pub enum KeyType {
    /// ECDSA public key, 256 bits..
    #[at_enum("ECDSA 256")]
    Ecdsa256,
    /// RSA public key, 2048 bits.
    #[at_enum("RSA 2048")]
    Rsa2048,
}