Skip to content

Commit f480ecc

Browse files
robertsLandoclaude
andcommitted
docs: update ASHRAE 135 references with practical open-source resources
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 09dd63c commit f480ecc

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

CLAUDE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,16 @@ Thin re-export: `BACnetClient` as default export, plus all enums, types, and bit
103103

104104
## ASHRAE 135 Standard Reference
105105

106-
This library implements [ASHRAE Standard 135 (BACnet)](https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards). Always consult the official specification when reviewing or implementing features:
106+
This library implements ASHRAE Standard 135 (BACnet). Always consult the official specification and reference implementations when reviewing or implementing features:
107107

108-
- **[Standard 135-2024](https://ashrae.iwrapper.com/ASHRAE_PREVIEW_ONLY_STANDARDS/STD_135_2024)** — Current version
109-
- **[Standard 135-2020](https://ashrae.iwrapper.com/ASHRAE_PREVIEW_ONLY_STANDARDS/STD_135_2020)** — Previous version
108+
- **[bacnet-stack](https://github.com/bacnet-stack/bacnet-stack)** — The most widely used open-source BACnet implementation in C. Use as the primary source of truth for protocol behavior and packet formats.
109+
- **[BACnet.org technical papers](https://bacnet.org/developer-resources/)** — Free PDFs covering specific topics (foreign devices, BBMDs, routing, etc.)
110+
- **[Wireshark BVLC dissector](https://github.com/wireshark/wireshark/blob/master/epan/dissectors/packet-bvlc.c)** — Useful for verifying packet formats and field layouts
110111

111-
When implementing or modifying protocol features, reference the relevant standard section in a code comment with a link when possible. Example:
112+
When implementing or modifying protocol features, reference the relevant standard section in a code comment. Example:
112113

113114
```typescript
114115
// Encode object identifier per ASHRAE 135-2024 §20.2.14
115-
// https://ashrae.iwrapper.com/ASHRAE_PREVIEW_ONLY_STANDARDS/STD_135_2024
116116
encodeApplicationObjectId(buffer, objectType, instance)
117117
```
118118

0 commit comments

Comments
 (0)