关于GPIO接口的建议

Pin类型默认是零大小的(C-ZST-PIN)

由HAL暴露的GPIO接口应该为所有接口或者端口上的每一个管脚提供一个专用的零大小类型,从而当所有的管脚分配静态已知时,提供一个零开销抽象。

每个GPIO接口或者端口应该实现一个split方法,它返回一个有所有管脚的结构体。

案例:

  1. #![allow(unused)]
  2. fn main() {
  3. pub struct PA0;
  4. pub struct PA1;
  5. // ...
  6. pub struct PortA;
  7. impl PortA {
  8. pub fn split(self) -> PortAPins {
  9. PortAPins {
  10. pa0: PA0,
  11. pa1: PA1,
  12. // ...
  13. }
  14. }
  15. }
  16. pub struct PortAPins {
  17. pub pa0: PA0,
  18. pub pa1: PA1,
  19. // ...
  20. }
  21. }

管脚类型提供方法去擦除管脚和端口(C-ERASED-PIN)

管脚应该提供类型擦除方法去将它们的属性从编译时移到运行时,允许在应用中有更多的灵活性。

案例:

  1. #![allow(unused)]
  2. fn main() {
  3. /// 端口 A, 管脚 0。
  4. pub struct PA0;
  5. impl PA0 {
  6. pub fn erase_pin(self) -> PA {
  7. PA { pin: 0 }
  8. }
  9. }
  10. /// 端口A上的A管脚。
  11. pub struct PA {
  12. /// 管脚号。
  13. pin: u8,
  14. }
  15. impl PA {
  16. pub fn erase_port(self) -> Pin {
  17. Pin {
  18. port: Port::A,
  19. pin: self.pin,
  20. }
  21. }
  22. }
  23. pub struct Pin {
  24. port: Port,
  25. pin: u8,
  26. // (这些字段)
  27. // (这些字段可以打包以减少内存占用)
  28. }
  29. enum Port {
  30. A,
  31. B,
  32. C,
  33. D,
  34. }
  35. }

管脚状态应该被编码成类型参数 (C-PIN-STATE)

取决于芯片或者芯片系列,管脚可能被配置为具有不同特性的输出或者输入。这个状态应该在类型系统中被编码去避免在错误的状态中使用管脚。

另外,芯片特定的状态(eg. 驱动强度)可能也用这个办法被编码,使用额外的类型参数。

用来改变管脚状态的方法应该被实现成into_inputinto_output方法。

另外,应该提供with_{input,output}_state方法,在一个不同的状态中临时配置一个管脚而不是移动它。

应该为每个的管脚类型提供下列的方法(也就是说,已擦除和未擦除的管脚类型应该提供一样的API):

  • pub fn into_input<N: InputState>(self, input: N) -> Pin<N>
  • pub fn into_output<N: OutputState>(self, output: N) -> Pin<N>
  • pub fn with_input_state<N: InputState, R>( &mut self, input: N, f: impl FnOnce(&mut PA1<N>) -> R, ) -> R

  • pub fn with_output_state<N: OutputState, R>( &mut self, output: N, f: impl FnOnce(&mut PA1<N>) -> R, ) -> R

管脚状态应该用sealed traits来绑定。HAL的用户应该不需要添加它们自己的状态。这个traits能提供HAL特定的方法,实现管脚状态API需要这些方法。

案例:

  1. #![allow(unused)]
  2. fn main() {
  3. use std::marker::PhantomData;
  4. mod sealed {
  5. pub trait Sealed {}
  6. }
  7. pub trait PinState: sealed::Sealed {}
  8. pub trait OutputState: sealed::Sealed {}
  9. pub trait InputState: sealed::Sealed {
  10. // ...
  11. }
  12. pub struct Output<S: OutputState> {
  13. _p: PhantomData<S>,
  14. }
  15. impl<S: OutputState> PinState for Output<S> {}
  16. impl<S: OutputState> sealed::Sealed for Output<S> {}
  17. pub struct PushPull;
  18. pub struct OpenDrain;
  19. impl OutputState for PushPull {}
  20. impl OutputState for OpenDrain {}
  21. impl sealed::Sealed for PushPull {}
  22. impl sealed::Sealed for OpenDrain {}
  23. pub struct Input<S: InputState> {
  24. _p: PhantomData<S>,
  25. }
  26. impl<S: InputState> PinState for Input<S> {}
  27. impl<S: InputState> sealed::Sealed for Input<S> {}
  28. pub struct Floating;
  29. pub struct PullUp;
  30. pub struct PullDown;
  31. impl InputState for Floating {}
  32. impl InputState for PullUp {}
  33. impl InputState for PullDown {}
  34. impl sealed::Sealed for Floating {}
  35. impl sealed::Sealed for PullUp {}
  36. impl sealed::Sealed for PullDown {}
  37. pub struct PA1<S: PinState> {
  38. _p: PhantomData<S>,
  39. }
  40. impl<S: PinState> PA1<S> {
  41. pub fn into_input<N: InputState>(self, input: N) -> PA1<Input<N>> {
  42. todo!()
  43. }
  44. pub fn into_output<N: OutputState>(self, output: N) -> PA1<Output<N>> {
  45. todo!()
  46. }
  47. pub fn with_input_state<N: InputState, R>(
  48. &mut self,
  49. input: N,
  50. f: impl FnOnce(&mut PA1<N>) -> R,
  51. ) -> R {
  52. todo!()
  53. }
  54. pub fn with_output_state<N: OutputState, R>(
  55. &mut self,
  56. output: N,
  57. f: impl FnOnce(&mut PA1<N>) -> R,
  58. ) -> R {
  59. todo!()
  60. }
  61. }
  62. // 对于`PA`和`Pin`一样的,对于其它管脚类型来说也是。
  63. }