Define test functions using the macro
| 9 | |
| 10 | // Define test functions using the macro |
| 11 | FASTLED_FORCE_INLINE int add_force_inline(int a, int b) { |
| 12 | return a + b; |
| 13 | } |
| 14 | |
| 15 | FASTLED_FORCE_INLINE float multiply_force_inline(float a, float b) { |
| 16 | return a * b; |