1. 24 5月, 2019 1 次提交
  2. 03 5月, 2019 1 次提交
  3. 17 3月, 2019 1 次提交
  4. 28 2月, 2019 1 次提交
  5. 27 2月, 2019 1 次提交
  6. 14 2月, 2019 1 次提交
  7. 09 2月, 2019 1 次提交
    • J
      Change PinValue to struct (#211) · f56cbdaf
      Jeremy Kuhne 提交于
      * Change PinValue to struct
      
      Allows easier interop with raw data and enables us to extend with additional functionality. This will avoid having to add additional APIs for convenience and repeated typing of `PinValue == PinValue.High ? 1 :  0`.
      
      Doesn't impact existing enum usage.
      
      Sample usage:
      
      ``` C#
          class Program
          {
              static void Main(string[] args)
              {
                  PinValue value = true;
                  Console.WriteLine($"True is {value}");
                  TestApi(0);
                  Console.WriteLine($"Equality is {PinValue.High == true}");
              }
      
              public static void TestApi(PinValue value)
              {
                  Console.WriteLine($"PinValue is {value}");
              }
          }
      ```
      
      * Ok, so you can't switch a struct. :) Bonus now that you don't have to. There is no such thing as an invalid PinValue anymore.
      f56cbdaf
  8. 23 1月, 2019 1 次提交
    • G
      Cleanup for GPIO drivers (#148) · d594ce9f
      Greg Ingram 提交于
      * Added editconfig file
      
      * Beginning of cleaning
      
      * Added summaries and sorted
      
      * Added callback summaries
      
      * Fixed ordering and switch/case based on feedback
      d594ce9f
  9. 09 1月, 2019 1 次提交
    • G
      Random GPIO cleaning (#138) · d4e7b67a
      Greg Ingram 提交于
      * Basic cleanup in GPIO files
      
      * Basic comment cleanup in GPIO files
      
      * Removed othing lingering words
      
      * Another round of GPIO cleaning
      
      * Removed a couple more words
      
      * Added readonly and updated casing
      
      * Better method grouping and synced constructor summaries
      d4e7b67a
  10. 03 12月, 2018 1 次提交
  11. 30 11月, 2018 1 次提交
  12. 29 11月, 2018 2 次提交
  13. 21 11月, 2018 1 次提交
  14. 14 11月, 2018 1 次提交
  15. 09 11月, 2018 1 次提交
  16. 02 11月, 2018 1 次提交
  17. 31 10月, 2018 1 次提交