Use BACNET_ENGINEERING_UNITS for basic object API for units properties (#1104)

Co-authored-by: Ed <edward@connect-ex.com>
Co-authored-by: Steve Karg <skarg@users.sourceforge.net>
This commit is contained in:
BACnetEd
2025-11-18 04:17:22 +00:00
committed by GitHub
parent e9dd910b55
commit 003073b71e
17 changed files with 93 additions and 62 deletions
@@ -0,0 +1,15 @@
@echo off
rem Run clang-format over the source tree to conform to project requirements
rem Open a Tools->Command Line->Developer Command Prompt from within Visual studio
rem run clang-format-win.bat
echo running clang-format
cd ..\..\..
for /R %%f in (*.c) do clang-format --style=file -i "%%f"
for /R %%f in (*.h) do clang-format --style=file -i "%%f"
cd "ports\win32\microsoft visual studio"