We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Today we have a helper basic_copper_setup that sets up all the runtime for copper:
basic_copper_setup
let copper_ctx = basic_copper_setup(&PathBuf::from(logger_path), SLAB_SIZE, false, None) .expect("Failed to setup copper.");
But the generated application from the ron file gets separately the clock and the logger from that context.
let mut application = PtCloudsApplication::new(copper_ctx.clock.clone(), copper_ctx.unified_logger.clone()) .expect("Failed to create application.");
Maybe we could officialise this CopperContext and just have the generated application from cu29_derive get a context?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Today we have a helper
basic_copper_setup
that sets up all the runtime for copper:But the generated application from the ron file gets separately the clock and the logger from that context.
Maybe we could officialise this CopperContext and just have the generated application from cu29_derive get a context?
The text was updated successfully, but these errors were encountered: