//
%{^
#define N 10
int theArray[N] =
{
0,1,2,3,4,5,6,7,8,9
} ;
%} // end of [%{^]
#define N 10
macdef theArray =
$extval(arrayref(int,N),"theArray")
//
#include"{$ARDUINO}/staloadall.hats"%{^const uint8_t crcLookupTable[256] PROGMEM = { 0, 7, 14, 9, 28, 27, 18, 21, 56, 63, 54, 49, 36, 35, 42, 45, 112, 119, 126, 121, 108, 107, 98, 101, 72, 79, 70, 65, 84, 83, 90, 93, 224, 231, 238, 233, 252, 251, 242, 245, 216, 223, 214, 209, 196, 195, 202, 205, 144, 151, 158, 153, 140, 139, 130, 133, 168, 175, 166, 161, 180, 179, 186, 189, 199, 192, 201, 206, 219, 220, 213, 210, 255, 248, 241, 246, 227, 228, 237, 234, 183, 176, 185, 190, 171, 172, 165, 162, 143, 136, 129, 134, 147, 148, 157, 154, 39, 32, 41, 46, 59, 60, 53, 50, 31, 24, 17, 22, 3, 4, 13, 10, 87, 80, 89, 94, 75, 76, 69, 66, 111, 104, 97, 102, 115, 116, 125, 122, 137, 142, 135, 128, 149, 146, 155, 156, 177, 182, 191, 184, 173, 170, 163, 164, 249, 254, 247, 240, 229, 226, 235, 236, 193, 198, 207, 200, 221, 218, 211, 212, 105, 110, 103, 96, 117, 114, 123, 124, 81, 86, 95, 88, 77, 74, 67, 68, 25, 30, 23, 16, 5, 2, 11, 12, 33, 38, 47, 40, 61, 58, 51, 52, 78, 73, 64, 71, 82, 85, 92, 91, 118, 113, 120, 127, 106, 109, 100, 99, 62, 57, 48, 55, 34, 37, 44, 43, 6, 1, 8, 15, 26, 29, 20, 19, 174, 169, 160, 167, 178, 181, 188, 187, 150, 145, 152, 159, 138, 141, 132, 131, 222, 217, 208, 215, 194, 197, 204, 203, 230, 225, 232, 239, 250, 253, 244, 243 };
%}macdef crcLookupTable = $extval(arrayref(uint8,256),"crcLookupTable")macdef F(s,nm) = %{^ const char* ,(nm) PROGMEM = ,(s) %} macdef ,(s) $extval(char*,",(s)")
macdef crcLookupTable = $extval(arrayref(uint8,256),"crcLookupTable")
fun pec_add (old: uint8, new: uint8): uint8 = let val a = uint8_bit_xor(old, new) val b = cast{g0uint(int_kind)}(a) in crcLookupTable[b] endstaload
UN = "prelude/SATS/unsafe.sats"
macdef crcLookupTable =
$extval(arrayref(uint8,256),"crcLookupTable")
fun
pec_add
(
old: uint8, new: uint8
) : uint8 = let
val a = old lxor new
val b = $UN.cast{natLt(256)}(a)
in
crcLookupTable[b]
end
extern
fun{}
pec_add
(
old: uint8, new: uint8
) : uint8
implement
{}
pec_add
(old, new) = let
val a = old lxor new
val b = $UN.cast{natLt(256)}(a)
in
crcLookupTable[b]
end
macdef theArray (x) = $extval(arrayref(uint8, ,(x)),"theArray")--
You received this message because you are subscribed to the Google Groups "ats-lang-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ats-lang-user...@googlegroups.com.
To post to this group, send email to ats-lan...@googlegroups.com.
Visit this group at http://groups.google.com/group/ats-lang-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ats-lang-users/9d384d48-6fd0-4fc3-865c-8464422ab61e%40googlegroups.com.