From aeaac665af3d509d2898254f5071dbb88ed06075 Mon Sep 17 00:00:00 2001 From: David Fenyes Date: Fri, 13 Mar 2020 21:51:19 -0500 Subject: [PATCH] Comment fixes for accurate descriptions. --- firmware/asdf/src/asdf_physical.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/asdf/src/asdf_physical.c b/firmware/asdf/src/asdf_physical.c index ecfa088..d7aae8a 100644 --- a/firmware/asdf/src/asdf_physical.c +++ b/firmware/asdf/src/asdf_physical.c @@ -46,10 +46,10 @@ static void (*const physical_out_set[])(uint8_t) = { }; -// For each virtual out, maintain a "shadow" register for the output value. This +// For each physical resource, maintain a "shadow" register for the output value. This // permits machine independent implementations of the toggle and pulse functions // to be implemented in this module, requiring only a "set" function for each -// virtual output in the architecture-dependent layer. This implementation is +// physical resource in the architecture-dependent layer. This implementation is // not as efficient, but the timing is not critical, and the events are so // infrequent that the benefits of the refactoring far outweigh any performance // penalty.