| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * This plugin uses both firmware's API interface and private application headers.
- * It can be loaded by a plugin manager that uses CompoundApiInterface,
- * which combines both interfaces.
- */
- #include "app_api.h"
- #include "plugin_interface.h"
- #include <flipper_application/flipper_application.h>
- #include <furi.h>
- static void advanced_plugin2_method1(int arg1) {
- /* This function is implemented inside host application */
- app_api_accumulator_mul(arg1);
- }
- static void advanced_plugin2_method2() {
- /* Accumulator value is stored inside host application */
- FURI_LOG_I("TEST", "Plugin 2, accumulator: %lu", app_api_accumulator_get());
- }
- /* Actual implementation of app<>plugin interface */
- static const AdvancedPlugin advanced_plugin2 = {
- .name = "Advanced Plugin 2",
- .method1 = &advanced_plugin2_method1,
- .method2 = &advanced_plugin2_method2,
- };
- /* Plugin descriptor to comply with basic plugin specification */
- static const FlipperAppPluginDescriptor advanced_plugin2_descriptor = {
- .appid = PLUGIN_APP_ID,
- .ep_api_version = PLUGIN_API_VERSION,
- .entry_point = &advanced_plugin2,
- };
- /* Plugin entry point - must return a pointer to const descriptor */
- const FlipperAppPluginDescriptor* advanced_plugin2_ep() {
- return &advanced_plugin2_descriptor;
- }
|