mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-24 04:45:32 -04:00
universal7885: Import radio hals
* Build them from source * Drop prebuilts on vendor tree
This commit is contained in:
parent
0282f1e3a9
commit
d97d8b7bfe
15 changed files with 455 additions and 7 deletions
14
universal7885-common/hidl/radio/channel/2.0/Android.bp
Normal file
14
universal7885-common/hidl/radio/channel/2.0/Android.bp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
// This file is autogenerated by hidl-gen -Landroidbp.
|
||||
|
||||
hidl_interface {
|
||||
name: "vendor.samsung.hardware.radio.channel@2.0",
|
||||
root: "vendor.samsung.hardware",
|
||||
srcs: [
|
||||
"ISehChannel.hal",
|
||||
"ISehChannelCallback.hal",
|
||||
],
|
||||
interfaces: [
|
||||
"android.hidl.base@1.0",
|
||||
],
|
||||
gen_java: true,
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package vendor.samsung.hardware.radio.channel@2.0;
|
||||
|
||||
import @2.0::ISehChannelCallback;
|
||||
|
||||
interface ISehChannel {
|
||||
oneway send(vec<uint8_t> data);
|
||||
oneway setCallback(ISehChannelCallback callback);
|
||||
};
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package vendor.samsung.hardware.radio.channel@2.0;
|
||||
|
||||
interface ISehChannelCallback {
|
||||
oneway receive(vec<uint8_t> data);
|
||||
};
|
||||
Loading…
Reference in a new issue