mirror of
https://github.com/kelvinlawson/atomthreads.git
synced 2026-02-15 19:33:14 +01:00
19 lines
379 B
C
19 lines
379 B
C
#ifndef __STRESS1_H__
|
|
#define __STRESS1_H__
|
|
|
|
#include "atomport.h"
|
|
|
|
#define TEST_STACK_BYTE_SIZE 0x200
|
|
#define IDLE_STACK_BYTE_SIZE 0x200
|
|
#define MONITOR_STACK_BYTE_SIZE 0x400
|
|
|
|
#ifndef TEST_THREADS
|
|
#define TEST_THREADS 16
|
|
#endif
|
|
|
|
extern void atomthreads_stress_test (uint32_t thread_count) ;
|
|
extern uint32_t test_start (void) ;
|
|
|
|
#endif /* __STRESS1_H__ */
|
|
|