All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.wsyjlly.mavlink.annotation.MavlinkMessageParam Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package cn.wsyjlly.mavlink.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**********************************
 * Author YSW
 * Description
 * Date 2020.10.29 - 21:19
 **********************************/

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface MavlinkMessageParam {
	String mavlinkType();
	int position();
	int typeSize();
	int streamLength();
	String units() default "";
	Class enum0() default void.class;
	String description() default "No description provided";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy