Flipper Developer Docs
Toggle main menu visibility
Main Page
Related Pages
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Files
File List
Globals
All
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
v
w
Functions
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
v
w
Variables
Typedefs
a
b
c
d
e
f
g
i
m
n
p
r
s
t
v
Enumerations
a
b
c
d
e
f
g
i
n
o
p
r
s
v
Enumerator
c
e
f
g
i
n
o
r
s
v
Macros
_
d
e
f
r
v
w
Examples
▼
Flipper Developer Docs
►
App Development
►
Developer Tools
►
Expansion Modules
►
File Formats
►
JavaScript
►
Miscellaneous
►
System Programming
►
js_gui__widget
Deprecated List
►
Data Structures
▼
Files
▼
File List
►
applications
►
furi
▼
lib
►
bit_lib
►
ble_profile
►
datetime
►
digital_signal
►
drivers
►
flipper_application
►
flipper_format
►
FreeRTOS-glue
►
ibutton
►
infrared
►
lfrfid
▼
mjs
►
common
►
ffi
mjs_array.h
mjs_array_buf.h
mjs_array_buf_public.h
mjs_array_public.h
mjs_bcode.h
mjs_builtin.h
mjs_core.h
mjs_core_public.h
mjs_dataview.h
mjs_exec.h
mjs_exec_public.h
mjs_features.h
mjs_ffi.h
mjs_ffi_public.h
mjs_gc.h
mjs_gc_public.h
mjs_internal.h
mjs_json.h
mjs_license.h
mjs_mm.h
mjs_object.h
mjs_object_public.h
mjs_parser.h
mjs_primitive.h
mjs_primitive_public.h
mjs_string.h
mjs_string_public.h
mjs_tok.h
mjs_util.h
mjs_util_public.h
►
music_worker
►
nfc
►
one_wire
►
print
►
pulse_reader
►
signal_reader
►
subghz
►
toolbox
►
u8g2
►
update_util
err.h
mbedtls_cfg.h
►
targets
►
Globals
►
Examples
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
Loading...
Searching...
No Matches
mjs_features.h
1
/*
2
* Copyright (c) 2017 Cesanta Software Limited
3
* All rights reserved
4
*/
5
6
#ifndef MJS_FEATURES_H_
7
#define MJS_FEATURES_H_
8
9
#if !defined(MJS_AGGRESSIVE_GC)
10
#define MJS_AGGRESSIVE_GC 0
11
#endif
12
13
#if !defined(MJS_MEMORY_STATS)
14
#define MJS_MEMORY_STATS 0
15
#endif
16
17
/*
18
* MJS_GENERATE_JSC: if enabled, and if mmapping is also enabled (CS_MMAP),
19
* then execution of any .js file will result in creation of a .jsc file with
20
* precompiled bcode, and this .jsc file will be mmapped, instead of keeping
21
* bcode in RAM.
22
*
23
* By default it's enabled (provided that CS_MMAP is defined)
24
*/
25
#if !defined(MJS_GENERATE_JSC)
26
#if defined(CS_MMAP)
27
#define MJS_GENERATE_JSC 1
28
#else
29
#define MJS_GENERATE_JSC 0
30
#endif
31
#endif
32
33
#endif
/* MJS_FEATURES_H_ */
lib
mjs
mjs_features.h
Generated by
1.12.0