Re: [Bacsharp-developers] BACNET_OBJECT_TYPE: Value correction - from 31 to 54
Brought to you by:
anders-agren,
skarg
From: Dennis V M. <d.m...@d2...> - 2018-10-17 18:35:43
|
… Following on from my last e-mail (/reply) – forgot something – If you were mocking the listening for ‘Who-Is’ you’d also to add/implement a ‘APDU.ParseWhoIs()’ method (- as referenced): // DVM: public static bool /*APDU*/ ParseWhoIs(byte[] bytes, int offset) { // Look for and parse Who-Is Packet // int len = 0; ObjectID = 0; APDUType = bytes[offset]; if ((APDUType == 0x10) && (bytes[offset + 1] == 0x08)) { // TODO: Get the Device Instance Range Low Limit // TODO: Get the Device Instance Range High Limit return true; } else return false; } From: Steve Karg <st...@ka...> Sent: 16 October 2018 22:49 To: Discussion for developers of the BACsharp BACnet stack <bac...@li...> Subject: Re: [Bacsharp-developers] BACNET_OBJECT_TYPE: Value correction - from 31 to 54 Hi Dennis, Thank you for the bug-fix notice. I updated the object type enumerations in the BACsharp repo. Best Regards, Steve On Sun, Oct 14, 2018 at 11:27 AM Dennis V McEnaney <d.m...@d2...<mailto:d.m...@d2...>> wrote: // DBS: Value correction LIGHTING_OUTPUT = 54, // 31, [http://dev.d2i.co/d2i-email-signature/wlogo.png] Dennis McEnaney Technical Lead DDI 020 3102 4100<tel:02031024100> [http://dev.d2i.co/d2i-email-signature/wdot.png] TEL 020 3817 7839<tel:02038177839> [http://dev.d2i.co/d2i-email-signature/wdot.png] WEB d2i.co<http://d2i.co/> Portsoken House, 155-157 Minories, London, EC3N 1LJ [http://dev.d2i.co/d2i-email-signature/wico-linkedin.png]<https://www.linkedin.com/company/d2-interactive-uk>[http://dev.d2i.co/d2i-email-signature/wico-facebook.png]<https://www.facebook.com/d2iglobal>[http://dev.d2i.co/d2i-email-signature/wico-twitter.png]<https://twitter.com/d2interactive>[http://dev.d2i.co/d2i-email-signature/wico-instagram.png]<https://www.instagram.com/d2interactive/>[http://dev.d2i.co/d2i-email-signature/wico-google.png]<https://plus.google.com/116460778442548453069/posts> D2 Interactive Limited, Company Reg No. 7116878, VAT No. 984-4271-88, Registered Office: Portsoken House, 155-157 Minories, London, EC3N 1LJ. This email may be private and confidential, and contain legally privileged information. If you are not the addressee you should not disclose, copy, circulate or in any other way use the information contained in this transmission. Such unauthorised use is prohibited and may be unlawful. If you are not the intended recipient, please contact us immediately. P Save a tree - we only print the emails we really need. _______________________________________________ Bacsharp-developers mailing list Bac...@li...<mailto:Bac...@li...> https://lists.sourceforge.net/lists/listinfo/bacsharp-developers |