Draco
Draco
Thanks for your hard work! I think you might be able to simulate a dense environment by having another unit sending out alot of packets quickly.
I am also not getting any packets with zbdump. The lights on the CC2531 dongle are flashing like it is getting packets. I flashed the BumbleBee 2.1 hex and I'm...
I figured something out. It was defaulting to the cc253x driver and not bumblebee device. So, I specified it to use bumblebee and have a new error ``` $ sudo...
> what is "-d bumblebee" for ? There are a number of device drivers built into killerbee. By default it tries to autodetect but you can choose which one you...
> I do not have any issue Does it capture packets?
I'm having this issue as well. It also says I'm using experimental settings when I first launch it in single player. I wonder if one of those settings is keeping...
I have the issue of needing to change the return in the middle of a test. Also, it would be great to be able to set a catch all. For...
I would love to set the default in the setup. ```rust fn setup() ->Rc { let mock = Rc::new(RefCell::new(MockMyCollection::new())); mock.borrow_mut() .expect_get() .with(any()) // "any" is really just documentation. You could...
Alternatively ... ```rust // create it mock.expect_foo() .with(eq(5)) .return_const(7); // edit it mock.expect_foo() .with(eq(5)) .return_const(8); // remove it mock.remove_foo() .with(eq(5)) // remove all expects for foo mock.remove_foo()
I am getting this also on some but not all response generation. Ingestion had no errors.