Prefix LOG and CHECK with AOS_

This prepares us for introducing glog more widely and transitioning
things over where they make sense.

Change-Id: Ic6c208882407bc2153fe875ffc736d66f5c8ade5
diff --git a/frc971/wpilib/interrupt_edge_counting.h b/frc971/wpilib/interrupt_edge_counting.h
index 50dc94d..160682c 100644
--- a/frc971/wpilib/interrupt_edge_counting.h
+++ b/frc971/wpilib/interrupt_edge_counting.h
@@ -46,8 +46,8 @@
   // Starts the thread running.
   // set_priority and set_mutex must be called first.
   void Start() {
-    CHECK_NE(nullptr, mutex_);
-    CHECK_NE(0, priority_);
+    AOS_CHECK_NE(nullptr, mutex_);
+    AOS_CHECK_NE(0, priority_);
     thread_ = ::std::thread(::std::ref(*this));
   }