Skip to content

Commit

Permalink
test updated to work with JS
Browse files Browse the repository at this point in the history
  • Loading branch information
morisil committed Sep 6, 2024
1 parent 6861d12 commit 64b9eae
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* xemantic-osc - Kotlin idiomatic and multiplatform OSC protocol support
* Copyright (C) 2023 Kazimierz Pogoda
* Copyright (C) 2024 Kazimierz Pogoda
*
* This file is part of xemantic-osc.
*
Expand All @@ -16,11 +16,12 @@
* If not, see <https://www.gnu.org/licenses/>.
*/

package com.xemantic.osc
package com.xemantic.osc.type

/**
* See [Osc Message Examples](https://opensoundcontrol.stanford.edu/spec-1_0-examples.html).
*/
@OptIn(ExperimentalUnsignedTypes::class)
val oscillator4FrequencyBytes = ubyteArrayOf(
0x2fu, 0x6fu, 0x73u, 0x63u,
0x69u, 0x6cu, 0x6cu, 0x61u,
Expand All @@ -35,6 +36,7 @@ val oscillator4FrequencyBytes = ubyteArrayOf(
/**
* See [Osc Message Examples](https://opensoundcontrol.stanford.edu/spec-1_0-examples.html).
*/
@OptIn(ExperimentalUnsignedTypes::class)
val fooBytes = ubyteArrayOf(
0x2fu, 0x66u, 0x6fu, 0x6fu,
0x00u, 0x00u, 0x00u, 0x00u,
Expand Down

0 comments on commit 64b9eae

Please sign in to comment.