🚀 Power, speed, and protection—your ultimate mobile SSD companion!
The DockCaseMagnetic Visual M.2 2242 NVMe SSD Enclosure combines a magnetic design compatible with MagSafe and non-MagSafe devices, ultra-fast 10Gbps USB 3.2 Gen2 data transfer, and 100W power delivery charging. It supports M.2 NVMe 2230/2242 SSDs up to 2TB, features a 3-second power loss protection system to safeguard data, and includes a smart HD screen for real-time SSD health monitoring—perfect for professionals needing reliable, high-speed external storage and charging on the go.
J**N
Awesome enclosure!
Very cool device, I used the drive that came out of the steam deck or the legion go, can’t remember. Every device I plug it into, it just works. No power issues like other reviewers mention.
F**O
Wow!!
Man, this thing is well built and fast! So small, it’s an EDC in my bag. Works great with all my devices including the Fold 7, iPhone 13 mini, and my Galaxy tab s7. The cable is flexible and short but could’ve been shorter to work better with the MagSafe on my IPhone.
M**E
Great external drive: Fast and compact, but I have suggestions . . .
DockCase's external magsafe drive is a nifty device and I do recommend it if you want to film in ProRes Log on your iPhone. It's fairly affordable and comparable to other devices on the market. The metal enclosure is well made and also is a giant heat sink. This device also has the added benefit of letting you choose an SSD with a capacity that fits your needs. However, when you do choose an M.2 drive choose wisely! Some NVMe m.2 drives require more power than the iPhone can support and would necessitate you use an external power supply connect ed to the 100W PD port on this device. Did I mention it has a 100W Power Delivery port for connecting batteries and other accessories? Well it does! Just another benefit of the device.The Screen is bright and clear and communicates information you might need for your drive including temperature, read/write speeds, and also what speed USB you're connected with. This is great when trying to figure out which of your cables is USB 3.2 Gen 1 (5Gb/s), Gen 2 (10Gb/s), USB 2 (480Mb/s) or simply a power cable with no data transfer capabilities. The screen also contains information about your SSD, which can also be useful. Speaking of cables, when using a USB 3.2 Gen 1 port file transfer speeds to my PC were incredibly fast. I can only imagine how much faster they'll be when I can connect to a USB 3.2 Gen 2 hub.The drive enclosure is vented all over to help with cooling, but it will get noticeably warm and can even reach 45C when simply idling.I communicated with DockCase's customer support and they have been very helpful, friendly, and respond within 24 hours, which is great.If I love this device so much, why only 4 stars and not 5?My gripes are as follows:1. The screws are not magnetic at all so making sure you don't lose any can be a pain point. Include magnetic screws!2. The included cable, while nice is bulky and gets in the way when I am using my phone. I would reserve this cable for file transfer use only and rely on the compact cable DockCase offers, but YOU HAVE TO BUY IT SEPARATELY. Bleh! Not cool. For original MSRP of over $50, this compact cable should be included. That cable can be bought on amazon and is linked here: https://www.amazon.com/dp/B0DSZZ9WBC?ref=ppx_yo2ov_dt_b_fed_asin_title3. M.2 drive compatibility is probably the most important thing to know when buying this device. DockCase has a list of drives on the product page they have tested, but none indicate whether or not they need external/additional power to be usable. I first bought a WD SN740 drive and couldn't get the device to work unless I made use of the 100W PD port and plugged in external power. However, I bought a Micron 2400 2TB drive (link: https://www.amazon.com/dp/B0BV1GXT31?ref=ppx_yo2ov_dt_b_fed_asin_title ) and it works flawlessly without needing external power.4. The screen needs more information and we should be able to manually turn it off to save battery life of our phone. Also, update the firmware so it can communicate power draw.Overall this is a neat, fun device that has enabled me to film in ProRes Log on my iPhone 16 Pro Max. I recommend it but just beware of the little pitfalls and avoid any frustration by getting an SSD that will work without extra power. Also, unless you absolutely need an external drive solution for your phone, wait for it to be on sale like I did so you can get it at around $42 instead of $60. Happy shopping and happy filming!
A**R
This thing is great
Over the years I have made my own hard drive case with mag safe for Black magic camera, and they were a little bulky or awkward. When I opened this up, it took me no more than a minute to install the new drive and button it up, and another 15 seconds to format it on my laptop.This case clicks firmly on to the back of my phone (iPhone 15 Pro Max) and is a great little handle for my fingers to grab on to. I also got the small silicon USB -C cord and its the absolute perfect combo. There is no chance of it falling off the phone accidentally, it is firmly on there. This may be my new favorite accessory. And of course you can use it on a windows or mac machine too!Easily gets 5 stars, this is a great product.
O**A
1TB or 2TB SSDs May Need Throttling To Power On And Use.
Experiencing Reboot and Power Off but don't want to use external power.Your SSD may consume upwards of 10W of power, and your device can't power that much by itself.The solution is to use HCTM (host controlled thermal management), a throttling feature of the SSD.HCTM has 2 throttling points you can set, TMT1, and TMT2:TMT1 == throttling to 50-70% of full performanceTMT2 == throttling to 20-50% of full performance.TUTORIAL:STEP 1) Have a linux system that your SSD can plugged into. Open terminal. Install nvme-cli.STEP 2) Identify your SSD device path name (i.e. /dev/nvme0). It will be used in all future steps.>> sudo nvme listSTEP 3) Run a script from a github repo "nvme_hctm_throttle" OR follow instructions below.*STOP HERE*If you ran "set_min_tmt_nvme-cli_1.xx.sh" from github, you are done.If you didn't, follow the next steps.STEP 4) Manually run the below nvme-cli HCTM commands in terminal.a) Determine if your SSD supports HCTM. Get the Min and Max accepted TMT temps (in degrees Kelvin).Note - Use the correct device name from STEP 2 (i.e. /dev/nvme0).>> sudo nvme id-ctrl /dev/nvme0 | grep -E '^hctma|^mntmt|^mxtmt' | awk '{print $3}' | xargsb) Determine DEFAULT TMT1 and TMT2 temp values at which your device throttles.Likely between 353-386 degrees Kelvin). NOTE I use my correct device name (i.e. /dev/nvme0).>> hexval=$(sudo nvme get-feature /dev/nvme0 -f 0x10 -s 1 | awk -F: '{print $NF}'); vals=$((hexval)); echo "$(((vals >> 16) & 0xFFFF)) $((vals & 0xFFFF)) Kelvin^"c) Determine the CURRENT TMT1 and TMT2 set values.Likely same as DEFAULT throttling temps. Note I use my correct device name (i.e. /dev/nvme0).>> hexval=$(sudo nvme get-feature /dev/nvme0 -f 0x10 -s 0 | awk -F: '{print $NF}'); vals=$((hexval)); echo "$(((vals >> 16) & 0xFFFF)) $((vals & 0xFFFF)) Kelvin^"d) Here is where you set your throttling temperature to the lowest supported value found in step a).sudo nvme set-feature /dev/nvme0 -f 0x10 -v $(( (273 << 16) | 275 )) --saveNote, the above command always sets both TMT1 and TMT2.For ~50-70% throttle, set TMT1 to 'mntmt' and set TMT2 to default TMT2 from step a),b).For ~20-50% throttle, set TMT1 to 'mntmt' and TMT2 to mntmt + 2 from step a).My example here does ~20-50% of full performance (273 and 273+2)
A**X
Check Before You Buy section at the bottom of product detail page before purchase
Edit:Thank you for Dockcase for response to my issue. I have since replace with a lower power consumption SSD and its working as intended.installed ssd recommended, but website did not mention high power ssd require external power source for it to work properly. this is not a portable device, need power bank
J**A
No way to “eject” disk on IOS
Awesome for the iPhone, however there’s no way to “eject” the drive before you unplug it. No option on the dock case either.
ترست بايلوت
منذ أسبوع
منذ 5 أيام